diff options
Diffstat (limited to 'fs/fcntl.c')
-rw-r--r-- | fs/fcntl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/fcntl.c b/fs/fcntl.c index 72c82f69b01b..22d1c3df61ac 100644 --- a/fs/fcntl.c +++ b/fs/fcntl.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/rcupdate.h> | 21 | #include <linux/rcupdate.h> |
22 | #include <linux/pid_namespace.h> | 22 | #include <linux/pid_namespace.h> |
23 | #include <linux/user_namespace.h> | 23 | #include <linux/user_namespace.h> |
24 | #include <linux/shmem_fs.h> | ||
24 | 25 | ||
25 | #include <asm/poll.h> | 26 | #include <asm/poll.h> |
26 | #include <asm/siginfo.h> | 27 | #include <asm/siginfo.h> |
@@ -336,6 +337,10 @@ static long do_fcntl(int fd, unsigned int cmd, unsigned long arg, | |||
336 | case F_GETPIPE_SZ: | 337 | case F_GETPIPE_SZ: |
337 | err = pipe_fcntl(filp, cmd, arg); | 338 | err = pipe_fcntl(filp, cmd, arg); |
338 | break; | 339 | break; |
340 | case F_ADD_SEALS: | ||
341 | case F_GET_SEALS: | ||
342 | err = shmem_fcntl(filp, cmd, arg); | ||
343 | break; | ||
339 | default: | 344 | default: |
340 | break; | 345 | break; |
341 | } | 346 | } |