From 01c165cd1b2ac601d5ae73d3cb5e82ccdd94ac94 Mon Sep 17 00:00:00 2001 From: Le Chi Thu Date: Tue, 3 Apr 2012 01:23:00 +0200 Subject: Initial commit --- ltp_framework/include/swaponoff.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ltp_framework/include/swaponoff.h (limited to 'ltp_framework/include/swaponoff.h') diff --git a/ltp_framework/include/swaponoff.h b/ltp_framework/include/swaponoff.h new file mode 100644 index 0000000..e3eae3f --- /dev/null +++ b/ltp_framework/include/swaponoff.h @@ -0,0 +1,18 @@ + +#ifndef __SWAP_ON_OFF_H_ +#define __SWAP_ON_OFF_H_ + +/* + * Read swapon(2) / swapoff(2) for a full history lesson behind the value of + * MAX_SWAPFILES. + */ +#include +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 18) +#define MAX_SWAPFILES 30 +#elif LINUX_VERSION_CODE > KERNEL_VERSION(2, 4, 10) +#define MAX_SWAPFILES 32 +#else +#define MAX_SWAPFILES 8 +#endif + +#endif -- cgit v1.2.3