+++ /dev/null
-/*
- * It is too painful to get these out of <linux/swap.h>
- * (which again requires <asm/page.h> etc).
- * These exist since Linux 1.3.2.
- */
-
-#ifndef SWAP_FLAG_PREFER
-#define SWAP_FLAG_PREFER 0x8000 /* set if swap priority specified */
-#endif
-#ifndef SWAP_FLAG_PRIO_MASK
-#define SWAP_FLAG_PRIO_MASK 0x7fff
-#endif
-#ifndef SWAP_FLAG_PRIO_SHIFT
-#define SWAP_FLAG_PRIO_SHIFT 0
-#endif
#include "bitops.h"
#include "blkdev.h"
-#include "swap_constants.h"
#include "nls.h"
#include "fsprobe.h"
#include "pathnames.h"
# define SWAP_FLAG_DISCARD 0x10000 /* discard swap cluster after use */
#endif
+#ifndef SWAP_FLAG_PREFER
+# define SWAP_FLAG_PREFER 0x8000 /* set if swap priority specified */
+#endif
+
+#ifndef SWAP_FLAG_PRIO_MASK
+# define SWAP_FLAG_PRIO_MASK 0x7fff
+#endif
+
+#ifndef SWAP_FLAG_PRIO_SHIFT
+# define SWAP_FLAG_PRIO_SHIFT 0
+#endif
+
#ifndef SWAPON_HAS_TWO_ARGS
/* libc is insane, let's call the kernel */
# include <sys/syscall.h>