- explain what magic numbers we're using here.
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 18 Mar 2006 23:02:45 +0000 (23:02 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 18 Mar 2006 23:02:45 +0000 (23:02 -0000)
util-linux/freeramdisk.c

index 923a151..1f010c7 100644 (file)
 #include <unistd.h>
 #include "busybox.h"
 
+/* From linux/fs.h */
+#define BLKFLSBUF  _IO(0x12,97)
+/* From <linux/fd.h> */
+#define FDFLUSH  _IO(2,0x4b)
+
 int freeramdisk_main(int argc, char **argv)
 {
        int result;
@@ -29,7 +34,7 @@ int freeramdisk_main(int argc, char **argv)
 
        // Act like freeramdisk, fdflush, or both depending on configuration.
        result = ioctl(fd, (ENABLE_FREERAMDISK && bb_applet_name[1]=='r')
-                       || !ENABLE_FDFLUSH ? _IO(0x12,97) : _IO(2,0x4b));
+                       || !ENABLE_FDFLUSH ? BLKFLSBUF : FDFLUSH);
 
        if (ENABLE_FEATURE_CLEAN_UP) close(fd);