/** Linux kernel related functions. * * @file * @author Steffen Vogel * @copyright 2014-2016, Institute for Automation of Complex Power Systems, EONERC * This file is part of S2SS. All Rights Reserved. Proprietary and confidential. * Unauthorized copying of this file, via any medium is strictly prohibited. *********************************************************************************/ #ifndef _LINUX_H_ #define _LINUX_H_ //#include /** Check if current process has capability \p cap. * * @retval 0 If capabilty is present. * @retval <0 If capability is not present. */ //int kernel_check_cap(cap_value_t cap): /** Checks for realtime (PREEMPT_RT) patched kernel. * * See https://rt.wiki.kernel.org * * @retval 0 Kernel is patched. * @reval <>0 Kernel is not patched. */ int kernel_is_rt(); /** Check if kernel command line contains "isolcpus=" option. * * See https://www.kernel.org/doc/Documentation/kernel-parameters.txt * * @retval 0 Kernel has isolated cores. * @reval <>0 Kernel has no isolated cores. */ int kernel_has_cmdline(const char *substr); /** Check if kernel is version is sufficient * * @retval 0 Kernel version is sufficient. * @reval <>0 Kernel version is not sufficient. */ int kernel_has_version(int maj, int min); /** Checks if a kernel module is loaded * * @param module the name of the module * @retval 0 Module is loaded. * @reval <>0 Module is not loaded. */ int kernel_module_loaded(const char *module); /** Load kernel module via modprobe */ int kernel_module_load(const char *module); /** Set parameter of loaded kernel module */ int kernel_module_set_param(const char *module, const char *param, const char *value); /** Get cacheline size in bytes */ int kernel_get_cacheline_size(); #endif /* _LINUX_H_ */