[PATCH] Remove fcntl bits, they are not part of the vmsplice patch anymore
authorJens Axboe <axboe@suse.de>
Wed, 26 Apr 2006 13:31:13 +0000 (15:31 +0200)
committerJens Axboe <axboe@suse.de>
Wed, 26 Apr 2006 13:31:13 +0000 (15:31 +0200)
splice.h

index 5c4fa923cd97d7309788d55f8005749f394dbd7c..e9c2f2ad7c6a5ddd029ff32be38baffd8a69f0f5 100644 (file)
--- a/splice.h
+++ b/splice.h
 #error unsupported arch
 #endif
 
-#ifndef F_SETPSZ
-#define        F_SETPSZ        15
-#define F_GETPSZ       16
-#endif
-
 #define SPLICE_F_MOVE  (0x01)  /* move pages instead of copying */
 #define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
                                 /* we may still block on the fd we splice */
@@ -39,7 +34,6 @@ static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
                         size_t len, unsigned long flags)
 {
        return syscall(__NR_splice, fdin, off_in, fdout, off_out, len, flags);
-
 }
 
 static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)