]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - fs/eventfd.c
net: Fix recursive descent in __scm_destroy().
[linux-2.6-omap-h63xx.git] / fs / eventfd.c
index 3ed4466177a74929b2fac1cde0b38af8ef0e9f06..08bf558d04080ffe0a3ced77a5660d4af4e1182f 100644 (file)
@@ -203,6 +203,10 @@ asmlinkage long sys_eventfd2(unsigned int count, int flags)
        int fd;
        struct eventfd_ctx *ctx;
 
+       /* Check the EFD_* constants for consistency.  */
+       BUILD_BUG_ON(EFD_CLOEXEC != O_CLOEXEC);
+       BUILD_BUG_ON(EFD_NONBLOCK != O_NONBLOCK);
+
        if (flags & ~(EFD_CLOEXEC | EFD_NONBLOCK))
                return -EINVAL;