Lines Matching refs:file
13 #include <linux/file.h>
598 if (!f.file)
600 audit_file(f.file);
601 error = mnt_want_write_file(f.file);
603 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
604 mnt_drop_write_file(f.file);
643 /* The file system tried to returned a value bigger
690 if (!f.file)
692 audit_file(f.file);
693 error = getxattr(f.file->f_path.dentry, name, value, size);
720 /* The file system tried to returned a list bigger
765 if (!f.file)
767 audit_file(f.file);
768 error = listxattr(f.file->f_path.dentry, list, size);
830 if (!f.file)
832 audit_file(f.file);
833 error = mnt_want_write_file(f.file);
835 error = removexattr(f.file->f_path.dentry, name);
836 mnt_drop_write_file(f.file);
892 * NULL name; some file systems use this operation internally, with varying