]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blobdiff - fs/fcntl.c
Revert "UBUNTU: SAUCE: Import aufs driver"
[mirror_ubuntu-zesty-kernel.git] / fs / fcntl.c
index d60b6822ca1af28c68e6f836e2999cfb26cca30f..e1c54f20325ca870af01d26e21d42dc0c94604a9 100644 (file)
@@ -29,7 +29,7 @@
 
 #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME)
 
-int setfl(int fd, struct file * filp, unsigned long arg)
+static int setfl(int fd, struct file * filp, unsigned long arg)
 {
        struct inode * inode = file_inode(filp);
        int error = 0;
@@ -60,8 +60,6 @@ int setfl(int fd, struct file * filp, unsigned long arg)
 
        if (filp->f_op->check_flags)
                error = filp->f_op->check_flags(arg);
-       if (!error && filp->f_op->setfl)
-               error = filp->f_op->setfl(filp, arg);
        if (error)
                return error;
 
@@ -82,7 +80,6 @@ int setfl(int fd, struct file * filp, unsigned long arg)
  out:
        return error;
 }
-EXPORT_SYMBOL_GPL(setfl);
 
 static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
                      int force)