From be7e5bfd9f5019fb7f57347fd532862bbb10667a Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 26 Apr 2006 15:31:13 +0200 Subject: [PATCH] [PATCH] Remove fcntl bits, they are not part of the vmsplice patch anymore --- splice.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/splice.h b/splice.h index 5c4fa92..e9c2f2a 100644 --- a/splice.h +++ b/splice.h @@ -24,11 +24,6 @@ #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) -- 2.25.1