lkml.org 
[lkml]   [2018]   [Jul]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subjectlinux-next: manual merge of the vfs tree with the overlayfs tree
Hi all,

Today's linux-next merge of the vfs tree got conflicts in:

fs/open.c

between commit:

d4d6f39c507e ("vfs: optionally don't account file in nr_files")
88498a6bd8d1 ("vfs: simplify dentry_open()")

from the overlayfs tree and commit:

5f0cc0005d2e ("introduce FMODE_OPENED")
13fcca01ef86 ("now we can fold open_check_o_direct() into do_dentry_open()")
7dfb1eeaea37 ("introduce FMODE_CREATED and switch to it")

from the vfs tree.

I *think* I got this right, but please check. Is there some way that
these overlayfs commits can be integrated into the vfs tree development
(or vice versa). Also, I would expect to see *some* Reviewed-by or
Acked-by lines in all this work ...

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging. You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

--
Cheers,
Stephen Rothwell

diff --cc fs/open.c
index 52a1ea584669,39dcbf13031c..000000000000
--- a/fs/open.c
+++ b/fs/open.c
@@@ -731,7 -732,6 +721,7 @@@ static int do_dentry_open(struct file *
static const struct file_operations empty_fops = {};
int error;

- WARN_ON(f->f_mode & ~FMODE_NOACCOUNT);
++ WARN_ON(f->f_mode & ~ (FMODE_NOACCOUNT | FMODE_CREATED));
f->f_mode |= OPEN_FMODE(f->f_flags) | FMODE_LSEEK |
FMODE_PREAD | FMODE_PWRITE;

@@@ -743,8 -743,7 +733,8 @@@
f->f_wb_err = filemap_sample_wb_err(f->f_mapping);

if (unlikely(f->f_flags & O_PATH)) {
+ WARN_ON(f->f_mode & FMODE_NOACCOUNT);
- f->f_mode = FMODE_PATH;
+ f->f_mode = FMODE_PATH | FMODE_OPENED;
f->f_op = &empty_fops;
return 0;
}
@@@ -890,47 -893,14 +884,44 @@@ EXPORT_SYMBOL(file_path)
int vfs_open(const struct path *path, struct file *file,
const struct cred *cred)
{
- struct dentry *dentry = d_real(path->dentry, NULL, file->f_flags, 0);
+ file->f_path = *path;
+ return do_dentry_open(file, d_backing_inode(path->dentry), NULL, cred);
+}

- if (IS_ERR(dentry))
- return PTR_ERR(dentry);
+/**
+ * path_open() - Open an inode by a particular name.
+ * @path: The name of the file.
+ * @flags: The O_ flags used to open this file.
+ * @inode: The inode to open.
+ * @cred: The task's credentials used when opening this file.
+ *
+ * Context: Process context.
+ * Return: A pointer to a struct file or an IS_ERR pointer. Cannot return NULL.
+ */
+struct file *path_open(const struct path *path, int flags, struct inode *inode,
+ const struct cred *cred, bool account)
+{
+ struct file *file;
+ int error;
+
+ file = __get_empty_filp(account);
+ if (IS_ERR(file))
+ return file;

+ file->f_flags = flags;
file->f_path = *path;
- return do_dentry_open(file, d_backing_inode(dentry), NULL, cred);
+ error = do_dentry_open(file, inode, NULL, cred);
+ if (error) {
- put_filp(file);
++ if (file->f_mode & FMODE_OPENED)
++ fput(file);
++ else
++ put_filp(file);
+ return ERR_PTR(error);
+ }
+
- error = open_check_o_direct(file);
- if (error) {
- fput(file);
- file = ERR_PTR(error);
- }
+ return file;
}
+EXPORT_SYMBOL(path_open);

struct file *dentry_open(const struct path *path, int flags,
const struct cred *cred)
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2018-07-10 02:19    [W:0.221 / U:0.028 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site