Commit 874c8ca1 authored by David Howells's avatar David Howells Committed by Linus Torvalds
Browse files

netfs: Fix gcc-12 warning by embedding vfs inode in netfs_i_context

While randstruct was satisfied with using an open-coded "void *" offset
cast for the netfs_i_context <-> inode casting, __builtin_object_size() as
used by FORTIFY_SOURCE was not as easily fooled.  This was causing the
following complaint[1] from gcc v12:

  In file included from include/linux/string.h:253,
                   from include/linux/ceph/ceph_debug.h:7,
                   from fs/ceph/inode.c:2:
  In function 'fortify_memset_chk',
      inlined from 'netfs_i_context_init' at include/linux/netfs.h:326:2,
      inlined from 'ceph_alloc_inode' at fs/ceph/inode.c:463:2:
  include/linux/fortify-string.h:242:25: warning: call to '__write_overflow_field' declared with attribute warning: detected write beyond size of field (1st parameter); maybe use struct_group()? [-Wattribute-warning]
    242 |                         __write_overflow_field(p_size_field, size);
        |                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Fix this by embedding a struct inode into struct netfs_i_context (which
should perhaps be renamed to struct netfs_inode).  The struct inode
vfs_inode fields are then removed from the 9p, afs, ceph and cifs inode
structs and vfs_inode is then simply changed to "netfs.inode" in those
filesystems.

Further, rename netfs_i_context to netfs_inode, get rid of the
netfs_inode() function that converted a netfs_i_context pointer to an
inode pointer (that can now be done with &ctx->inode) and rename the
netfs_i_context() function to netfs_inode() (which is now a wrapper
around container_of()).

Most of the changes were done with:

  perl -p -i -e 's/vfs_inode/netfs.inode/'g \
        `git grep -l 'vfs_inode' -- fs/{9p,afs,ceph,cifs}/*.[ch]`

Kees suggested doing it with a pair structure[2] and a special
declarator to insert that into the network filesystem's inode
wrapper[3], but I think it's cleaner to embed it - and then it doesn't
matter if struct randomisation reorders things.

Dave Chinner suggested using a filesystem-specific VFS_I() function in
each filesystem to convert that filesystem's own inode wrapper struct
into the VFS inode struct[4].

Version #2:
 - Fix a couple of missed name changes due to a disabled cifs option.
 - Rename nfs_i_context to nfs_inode
 - Use "netfs" instead of "nic" as the member name in per-fs inode wrapper
   structs.

[ This also undoes commit 507160f4 ("netfs: gcc-12: temporarily
  disable '-Wattribute-warning' for now") that is no longer needed ]

Fixes: bc899ee1

 ("netfs: Add a netfs inode context")
Reported-by: default avatarJeff Layton <jlayton@kernel.org>
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Reviewed-by: default avatarJeff Layton <jlayton@kernel.org>
Reviewed-by: default avatarKees Cook <keescook@chromium.org>
Reviewed-by: default avatarXiubo Li <xiubli@redhat.com>
cc: Jonathan Corbet <corbet@lwn.net>
cc: Eric Van Hensbergen <ericvh@gmail.com>
cc: Latchesar Ionkov <lucho@ionkov.net>
cc: Dominique Martinet <asmadeus@codewreck.org>
cc: Christian Schoenebeck <linux_oss@crudebyte.com>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: Ilya Dryomov <idryomov@gmail.com>
cc: Steve French <smfrench@gmail.com>
cc: William Kucharski <william.kucharski@oracle.com>
cc: "Matthew Wilcox (Oracle)" <willy@infradead.org>
cc: Dave Chinner <david@fromorbit.com>
cc: linux-doc@vger.kernel.org
cc: v9fs-developer@lists.sourceforge.net
cc: linux-afs@lists.infradead.org
cc: ceph-devel@vger.kernel.org
cc: linux-cifs@vger.kernel.org
cc: samba-technical@lists.samba.org
cc: linux-fsdevel@vger.kernel.org
cc: linux-hardening@vger.kernel.org
Link: https://lore.kernel.org/r/d2ad3a3d7bdd794c6efb562d2f2b655fb67756b9.camel@kernel.org/ [1]
Link: https://lore.kernel.org/r/20220517210230.864239-1-keescook@chromium.org/ [2]
Link: https://lore.kernel.org/r/20220518202212.2322058-1-keescook@chromium.org/ [3]
Link: https://lore.kernel.org/r/20220524101205.GI2306852@dread.disaster.area/ [4]
Link: https://lore.kernel.org/r/165296786831.3591209.12111293034669289733.stgit@warthog.procyon.org.uk/ # v1
Link: https://lore.kernel.org/r/165305805651.4094995.7763502506786714216.stgit@warthog.procyon.org.uk

 # v2
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3d9f55c5
...@@ -37,30 +37,31 @@ The network filesystem helper library needs a place to store a bit of state for ...@@ -37,30 +37,31 @@ The network filesystem helper library needs a place to store a bit of state for
its use on each netfs inode it is helping to manage. To this end, a context its use on each netfs inode it is helping to manage. To this end, a context
structure is defined:: structure is defined::
struct netfs_i_context { struct netfs_inode {
struct inode inode;
const struct netfs_request_ops *ops; const struct netfs_request_ops *ops;
struct fscache_cookie *cache; struct fscache_cookie *cache;
}; };
A network filesystem that wants to use netfs lib must place one of these A network filesystem that wants to use netfs lib must place one of these in its
directly after the VFS ``struct inode`` it allocates, usually as part of its inode wrapper struct instead of the VFS ``struct inode``. This can be done in
own struct. This can be done in a way similar to the following:: a way similar to the following::
struct my_inode { struct my_inode {
struct { struct netfs_inode netfs; /* Netfslib context and vfs inode */
/* These must be contiguous */
struct inode vfs_inode;
struct netfs_i_context netfs_ctx;
};
... ...
}; };
This allows netfslib to find its state by simple offset from the inode pointer, This allows netfslib to find its state by using ``container_of()`` from the
thereby allowing the netfslib helper functions to be pointed to directly by the inode pointer, thereby allowing the netfslib helper functions to be pointed to
VFS/VM operation tables. directly by the VFS/VM operation tables.
The structure contains the following fields: The structure contains the following fields:
* ``inode``
The VFS inode structure.
* ``ops`` * ``ops``
The set of operations provided by the network filesystem to netfslib. The set of operations provided by the network filesystem to netfslib.
...@@ -78,14 +79,12 @@ To help deal with the per-inode context, a number helper functions are ...@@ -78,14 +79,12 @@ To help deal with the per-inode context, a number helper functions are
provided. Firstly, a function to perform basic initialisation on a context and provided. Firstly, a function to perform basic initialisation on a context and
set the operations table pointer:: set the operations table pointer::
void netfs_i_context_init(struct inode *inode, void netfs_inode_init(struct inode *inode,
const struct netfs_request_ops *ops); const struct netfs_request_ops *ops);
then two functions to cast between the VFS inode structure and the netfs then a function to cast from the VFS inode structure to the netfs context::
context::
struct netfs_i_context *netfs_i_context(struct inode *inode); struct netfs_inode *netfs_node(struct inode *inode);
struct inode *netfs_inode(struct netfs_i_context *ctx);
and finally, a function to get the cache cookie pointer from the context and finally, a function to get the cache cookie pointer from the context
attached to an inode (or NULL if fscache is disabled):: attached to an inode (or NULL if fscache is disabled)::
......
...@@ -62,12 +62,12 @@ void v9fs_cache_inode_get_cookie(struct inode *inode) ...@@ -62,12 +62,12 @@ void v9fs_cache_inode_get_cookie(struct inode *inode)
version = cpu_to_le32(v9inode->qid.version); version = cpu_to_le32(v9inode->qid.version);
path = cpu_to_le64(v9inode->qid.path); path = cpu_to_le64(v9inode->qid.path);
v9ses = v9fs_inode2v9ses(inode); v9ses = v9fs_inode2v9ses(inode);
v9inode->netfs_ctx.cache = v9inode->netfs.cache =
fscache_acquire_cookie(v9fs_session_cache(v9ses), fscache_acquire_cookie(v9fs_session_cache(v9ses),
0, 0,
&path, sizeof(path), &path, sizeof(path),
&version, sizeof(version), &version, sizeof(version),
i_size_read(&v9inode->vfs_inode)); i_size_read(&v9inode->netfs.inode));
p9_debug(P9_DEBUG_FSC, "inode %p get cookie %p\n", p9_debug(P9_DEBUG_FSC, "inode %p get cookie %p\n",
inode, v9fs_inode_cookie(v9inode)); inode, v9fs_inode_cookie(v9inode));
......
...@@ -625,7 +625,7 @@ static void v9fs_inode_init_once(void *foo) ...@@ -625,7 +625,7 @@ static void v9fs_inode_init_once(void *foo)
struct v9fs_inode *v9inode = (struct v9fs_inode *)foo; struct v9fs_inode *v9inode = (struct v9fs_inode *)foo;
memset(&v9inode->qid, 0, sizeof(v9inode->qid)); memset(&v9inode->qid, 0, sizeof(v9inode->qid));
inode_init_once(&v9inode->vfs_inode); inode_init_once(&v9inode->netfs.inode);
} }
/** /**
......
...@@ -109,11 +109,7 @@ struct v9fs_session_info { ...@@ -109,11 +109,7 @@ struct v9fs_session_info {
#define V9FS_INO_INVALID_ATTR 0x01 #define V9FS_INO_INVALID_ATTR 0x01
struct v9fs_inode { struct v9fs_inode {
struct { struct netfs_inode netfs; /* Netfslib context and vfs inode */
/* These must be contiguous */
struct inode vfs_inode; /* the VFS's inode record */
struct netfs_i_context netfs_ctx; /* Netfslib context */
};
struct p9_qid qid; struct p9_qid qid;
unsigned int cache_validity; unsigned int cache_validity;
struct p9_fid *writeback_fid; struct p9_fid *writeback_fid;
...@@ -122,13 +118,13 @@ struct v9fs_inode { ...@@ -122,13 +118,13 @@ struct v9fs_inode {
static inline struct v9fs_inode *V9FS_I(const struct inode *inode) static inline struct v9fs_inode *V9FS_I(const struct inode *inode)
{ {
return container_of(inode, struct v9fs_inode, vfs_inode); return container_of(inode, struct v9fs_inode, netfs.inode);
} }
static inline struct fscache_cookie *v9fs_inode_cookie(struct v9fs_inode *v9inode) static inline struct fscache_cookie *v9fs_inode_cookie(struct v9fs_inode *v9inode)
{ {
#ifdef CONFIG_9P_FSCACHE #ifdef CONFIG_9P_FSCACHE
return netfs_i_cookie(&v9inode->vfs_inode); return netfs_i_cookie(&v9inode->netfs.inode);
#else #else
return NULL; return NULL;
#endif #endif
......
...@@ -140,7 +140,7 @@ static void v9fs_write_to_cache_done(void *priv, ssize_t transferred_or_error, ...@@ -140,7 +140,7 @@ static void v9fs_write_to_cache_done(void *priv, ssize_t transferred_or_error,
transferred_or_error != -ENOBUFS) { transferred_or_error != -ENOBUFS) {
version = cpu_to_le32(v9inode->qid.version); version = cpu_to_le32(v9inode->qid.version);
fscache_invalidate(v9fs_inode_cookie(v9inode), &version, fscache_invalidate(v9fs_inode_cookie(v9inode), &version,
i_size_read(&v9inode->vfs_inode), 0); i_size_read(&v9inode->netfs.inode), 0);
} }
} }
......
...@@ -234,7 +234,7 @@ struct inode *v9fs_alloc_inode(struct super_block *sb) ...@@ -234,7 +234,7 @@ struct inode *v9fs_alloc_inode(struct super_block *sb)
v9inode->writeback_fid = NULL; v9inode->writeback_fid = NULL;
v9inode->cache_validity = 0; v9inode->cache_validity = 0;
mutex_init(&v9inode->v_mutex); mutex_init(&v9inode->v_mutex);
return &v9inode->vfs_inode; return &v9inode->netfs.inode;
} }
/** /**
...@@ -252,7 +252,7 @@ void v9fs_free_inode(struct inode *inode) ...@@ -252,7 +252,7 @@ void v9fs_free_inode(struct inode *inode)
*/ */
static void v9fs_set_netfs_context(struct inode *inode) static void v9fs_set_netfs_context(struct inode *inode)
{ {
netfs_i_context_init(inode, &v9fs_req_ops); netfs_inode_init(inode, &v9fs_req_ops);
} }
int v9fs_init_inode(struct v9fs_session_info *v9ses, int v9fs_init_inode(struct v9fs_session_info *v9ses,
......
...@@ -30,7 +30,7 @@ void afs_invalidate_mmap_work(struct work_struct *work) ...@@ -30,7 +30,7 @@ void afs_invalidate_mmap_work(struct work_struct *work)
{ {
struct afs_vnode *vnode = container_of(work, struct afs_vnode, cb_work); struct afs_vnode *vnode = container_of(work, struct afs_vnode, cb_work);
unmap_mapping_pages(vnode->vfs_inode.i_mapping, 0, 0, false); unmap_mapping_pages(vnode->netfs.inode.i_mapping, 0, 0, false);
} }
void afs_server_init_callback_work(struct work_struct *work) void afs_server_init_callback_work(struct work_struct *work)
......
...@@ -109,7 +109,7 @@ struct afs_lookup_cookie { ...@@ -109,7 +109,7 @@ struct afs_lookup_cookie {
*/ */
static void afs_dir_read_cleanup(struct afs_read *req) static void afs_dir_read_cleanup(struct afs_read *req)
{ {
struct address_space *mapping = req->vnode->vfs_inode.i_mapping; struct address_space *mapping = req->vnode->netfs.inode.i_mapping;
struct folio *folio; struct folio *folio;
pgoff_t last = req->nr_pages - 1; pgoff_t last = req->nr_pages - 1;
...@@ -153,7 +153,7 @@ static bool afs_dir_check_folio(struct afs_vnode *dvnode, struct folio *folio, ...@@ -153,7 +153,7 @@ static bool afs_dir_check_folio(struct afs_vnode *dvnode, struct folio *folio,
block = kmap_local_folio(folio, offset); block = kmap_local_folio(folio, offset);
if (block->hdr.magic != AFS_DIR_MAGIC) { if (block->hdr.magic != AFS_DIR_MAGIC) {
printk("kAFS: %s(%lx): [%llx] bad magic %zx/%zx is %04hx\n", printk("kAFS: %s(%lx): [%llx] bad magic %zx/%zx is %04hx\n",
__func__, dvnode->vfs_inode.i_ino, __func__, dvnode->netfs.inode.i_ino,
pos, offset, size, ntohs(block->hdr.magic)); pos, offset, size, ntohs(block->hdr.magic));
trace_afs_dir_check_failed(dvnode, pos + offset, i_size); trace_afs_dir_check_failed(dvnode, pos + offset, i_size);
kunmap_local(block); kunmap_local(block);
...@@ -183,7 +183,7 @@ static bool afs_dir_check_folio(struct afs_vnode *dvnode, struct folio *folio, ...@@ -183,7 +183,7 @@ static bool afs_dir_check_folio(struct afs_vnode *dvnode, struct folio *folio,
static void afs_dir_dump(struct afs_vnode *dvnode, struct afs_read *req) static void afs_dir_dump(struct afs_vnode *dvnode, struct afs_read *req)
{ {
union afs_xdr_dir_block *block; union afs_xdr_dir_block *block;
struct address_space *mapping = dvnode->vfs_inode.i_mapping; struct address_space *mapping = dvnode->netfs.inode.i_mapping;
struct folio *folio; struct folio *folio;
pgoff_t last = req->nr_pages - 1; pgoff_t last = req->nr_pages - 1;
size_t offset, size; size_t offset, size;
...@@ -217,7 +217,7 @@ static void afs_dir_dump(struct afs_vnode *dvnode, struct afs_read *req) ...@@ -217,7 +217,7 @@ static void afs_dir_dump(struct afs_vnode *dvnode, struct afs_read *req)
*/ */
static int afs_dir_check(struct afs_vnode *dvnode, struct afs_read *req) static int afs_dir_check(struct afs_vnode *dvnode, struct afs_read *req)
{ {
struct address_space *mapping = dvnode->vfs_inode.i_mapping; struct address_space *mapping = dvnode->netfs.inode.i_mapping;
struct folio *folio; struct folio *folio;
pgoff_t last = req->nr_pages - 1; pgoff_t last = req->nr_pages - 1;
int ret = 0; int ret = 0;
...@@ -269,7 +269,7 @@ static int afs_dir_open(struct inode *inode, struct file *file) ...@@ -269,7 +269,7 @@ static int afs_dir_open(struct inode *inode, struct file *file)
static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key) static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
__acquires(&dvnode->validate_lock) __acquires(&dvnode->validate_lock)
{ {
struct address_space *mapping = dvnode->vfs_inode.i_mapping; struct address_space *mapping = dvnode->netfs.inode.i_mapping;
struct afs_read *req; struct afs_read *req;
loff_t i_size; loff_t i_size;
int nr_pages, i; int nr_pages, i;
...@@ -287,7 +287,7 @@ static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key) ...@@ -287,7 +287,7 @@ static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
req->cleanup = afs_dir_read_cleanup; req->cleanup = afs_dir_read_cleanup;
expand: expand:
i_size = i_size_read(&dvnode->vfs_inode); i_size = i_size_read(&dvnode->netfs.inode);
if (i_size < 2048) { if (i_size < 2048) {
ret = afs_bad(dvnode, afs_file_error_dir_small); ret = afs_bad(dvnode, afs_file_error_dir_small);
goto error; goto error;
...@@ -305,7 +305,7 @@ static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key) ...@@ -305,7 +305,7 @@ static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
req->actual_len = i_size; /* May change */ req->actual_len = i_size; /* May change */
req->len = nr_pages * PAGE_SIZE; /* We can ask for more than there is */ req->len = nr_pages * PAGE_SIZE; /* We can ask for more than there is */
req->data_version = dvnode->status.data_version; /* May change */ req->data_version = dvnode->status.data_version; /* May change */
iov_iter_xarray(&req->def_iter, READ, &dvnode->vfs_inode.i_mapping->i_pages, iov_iter_xarray(&req->def_iter, READ, &dvnode->netfs.inode.i_mapping->i_pages,
0, i_size); 0, i_size);
req->iter = &req->def_iter; req->iter = &req->def_iter;
...@@ -897,7 +897,7 @@ static struct inode *afs_do_lookup(struct inode *dir, struct dentry *dentry, ...@@ -897,7 +897,7 @@ static struct inode *afs_do_lookup(struct inode *dir, struct dentry *dentry,
out_op: out_op:
if (op->error == 0) { if (op->error == 0) {
inode = &op->file[1].vnode->vfs_inode; inode = &op->file[1].vnode->netfs.inode;
op->file[1].vnode = NULL; op->file[1].vnode = NULL;
} }
...@@ -1139,7 +1139,7 @@ static int afs_d_revalidate(struct dentry *dentry, unsigned int flags) ...@@ -1139,7 +1139,7 @@ static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
afs_stat_v(dir, n_reval); afs_stat_v(dir, n_reval);
/* search the directory for this vnode */ /* search the directory for this vnode */
ret = afs_do_lookup_one(&dir->vfs_inode, dentry, &fid, key, &dir_version); ret = afs_do_lookup_one(&dir->netfs.inode, dentry, &fid, key, &dir_version);
switch (ret) { switch (ret) {
case 0: case 0:
/* the filename maps to something */ /* the filename maps to something */
...@@ -1170,7 +1170,7 @@ static int afs_d_revalidate(struct dentry *dentry, unsigned int flags) ...@@ -1170,7 +1170,7 @@ static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
_debug("%pd: file deleted (uq %u -> %u I:%u)", _debug("%pd: file deleted (uq %u -> %u I:%u)",
dentry, fid.unique, dentry, fid.unique,
vnode->fid.unique, vnode->fid.unique,
vnode->vfs_inode.i_generation); vnode->netfs.inode.i_generation);
goto not_found; goto not_found;
} }
goto out_valid; goto out_valid;
...@@ -1368,7 +1368,7 @@ static void afs_dir_remove_subdir(struct dentry *dentry) ...@@ -1368,7 +1368,7 @@ static void afs_dir_remove_subdir(struct dentry *dentry)
if (d_really_is_positive(dentry)) { if (d_really_is_positive(dentry)) {
struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry)); struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
clear_nlink(&vnode->vfs_inode); clear_nlink(&vnode->netfs.inode);
set_bit(AFS_VNODE_DELETED, &vnode->flags); set_bit(AFS_VNODE_DELETED, &vnode->flags);
clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags); clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags); clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags);
...@@ -1487,8 +1487,8 @@ static void afs_dir_remove_link(struct afs_operation *op) ...@@ -1487,8 +1487,8 @@ static void afs_dir_remove_link(struct afs_operation *op)
/* Already done */ /* Already done */
} else if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) { } else if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
write_seqlock(&vnode->cb_lock); write_seqlock(&vnode->cb_lock);
drop_nlink(&vnode->vfs_inode); drop_nlink(&vnode->netfs.inode);
if (vnode->vfs_inode.i_nlink == 0) { if (vnode->netfs.inode.i_nlink == 0) {
set_bit(AFS_VNODE_DELETED, &vnode->flags); set_bit(AFS_VNODE_DELETED, &vnode->flags);
__afs_break_callback(vnode, afs_cb_break_for_unlink); __afs_break_callback(vnode, afs_cb_break_for_unlink);
} }
...@@ -1504,7 +1504,7 @@ static void afs_dir_remove_link(struct afs_operation *op) ...@@ -1504,7 +1504,7 @@ static void afs_dir_remove_link(struct afs_operation *op)
op->error = ret; op->error = ret;
} }
_debug("nlink %d [val %d]", vnode->vfs_inode.i_nlink, op->error); _debug("nlink %d [val %d]", vnode->netfs.inode.i_nlink, op->error);
} }
static void afs_unlink_success(struct afs_operation *op) static void afs_unlink_success(struct afs_operation *op)
...@@ -1680,8 +1680,8 @@ static void afs_link_success(struct afs_operation *op) ...@@ -1680,8 +1680,8 @@ static void afs_link_success(struct afs_operation *op)
afs_update_dentry_version(op, dvp, op->dentry); afs_update_dentry_version(op, dvp, op->dentry);
if (op->dentry_2->d_parent == op->dentry->d_parent) if (op->dentry_2->d_parent == op->dentry->d_parent)
afs_update_dentry_version(op, dvp, op->dentry_2); afs_update_dentry_version(op, dvp, op->dentry_2);
ihold(&vp->vnode->vfs_inode); ihold(&vp->vnode->netfs.inode);
d_instantiate(op->dentry, &vp->vnode->vfs_inode); d_instantiate(op->dentry, &vp->vnode->netfs.inode);
} }
static void afs_link_put(struct afs_operation *op) static void afs_link_put(struct afs_operation *op)
......
...@@ -109,7 +109,7 @@ static void afs_clear_contig_bits(union afs_xdr_dir_block *block, ...@@ -109,7 +109,7 @@ static void afs_clear_contig_bits(union afs_xdr_dir_block *block,
*/ */
static struct folio *afs_dir_get_folio(struct afs_vnode *vnode, pgoff_t index) static struct folio *afs_dir_get_folio(struct afs_vnode *vnode, pgoff_t index)
{ {
struct address_space *mapping = vnode->vfs_inode.i_mapping; struct address_space *mapping = vnode->netfs.inode.i_mapping;
struct folio *folio; struct folio *folio;
folio = __filemap_get_folio(mapping, index, folio = __filemap_get_folio(mapping, index,
...@@ -216,7 +216,7 @@ void afs_edit_dir_add(struct afs_vnode *vnode, ...@@ -216,7 +216,7 @@ void afs_edit_dir_add(struct afs_vnode *vnode,
_enter(",,{%d,%s},", name->len, name->name); _enter(",,{%d,%s},", name->len, name->name);
i_size = i_size_read(&vnode->vfs_inode); i_size = i_size_read(&vnode->netfs.inode);
if (i_size > AFS_DIR_BLOCK_SIZE * AFS_DIR_MAX_BLOCKS || if (i_size > AFS_DIR_BLOCK_SIZE * AFS_DIR_MAX_BLOCKS ||
(i_size & (AFS_DIR_BLOCK_SIZE - 1))) { (i_size & (AFS_DIR_BLOCK_SIZE - 1))) {
clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags); clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags);
...@@ -336,7 +336,7 @@ void afs_edit_dir_add(struct afs_vnode *vnode, ...@@ -336,7 +336,7 @@ void afs_edit_dir_add(struct afs_vnode *vnode,
if (b < AFS_DIR_BLOCKS_WITH_CTR) if (b < AFS_DIR_BLOCKS_WITH_CTR)
meta->meta.alloc_ctrs[b] -= need_slots; meta->meta.alloc_ctrs[b] -= need_slots;
inode_inc_iversion_raw(&vnode->vfs_inode); inode_inc_iversion_raw(&vnode->netfs.inode);
afs_stat_v(vnode, n_dir_cr); afs_stat_v(vnode, n_dir_cr);
_debug("Insert %s in %u[%u]", name->name, b, slot); _debug("Insert %s in %u[%u]", name->name, b, slot);
...@@ -383,7 +383,7 @@ void afs_edit_dir_remove(struct afs_vnode *vnode, ...@@ -383,7 +383,7 @@ void afs_edit_dir_remove(struct afs_vnode *vnode,
_enter(",,{%d,%s},", name->len, name->name); _enter(",,{%d,%s},", name->len, name->name);
i_size = i_size_read(&vnode->vfs_inode); i_size = i_size_read(&vnode->netfs.inode);
if (i_size < AFS_DIR_BLOCK_SIZE || if (i_size < AFS_DIR_BLOCK_SIZE ||
i_size > AFS_DIR_BLOCK_SIZE * AFS_DIR_MAX_BLOCKS || i_size > AFS_DIR_BLOCK_SIZE * AFS_DIR_MAX_BLOCKS ||
(i_size & (AFS_DIR_BLOCK_SIZE - 1))) { (i_size & (AFS_DIR_BLOCK_SIZE - 1))) {
...@@ -463,7 +463,7 @@ void afs_edit_dir_remove(struct afs_vnode *vnode, ...@@ -463,7 +463,7 @@ void afs_edit_dir_remove(struct afs_vnode *vnode,
if (b < AFS_DIR_BLOCKS_WITH_CTR) if (b < AFS_DIR_BLOCKS_WITH_CTR)
meta->meta.alloc_ctrs[b] += need_slots; meta->meta.alloc_ctrs[b] += need_slots;
inode_set_iversion_raw(&vnode->vfs_inode, vnode->status.data_version); inode_set_iversion_raw(&vnode->netfs.inode, vnode->status.data_version);
afs_stat_v(vnode, n_dir_rm); afs_stat_v(vnode, n_dir_rm);
_debug("Remove %s from %u[%u]", name->name, b, slot); _debug("Remove %s from %u[%u]", name->name, b, slot);
......
...@@ -131,7 +131,7 @@ int afs_sillyrename(struct afs_vnode *dvnode, struct afs_vnode *vnode, ...@@ -131,7 +131,7 @@ int afs_sillyrename(struct afs_vnode *dvnode, struct afs_vnode *vnode,
goto out; goto out;
} while (!d_is_negative(sdentry)); } while (!d_is_negative(sdentry));
ihold(&vnode->vfs_inode); ihold(&vnode->netfs.inode);
ret = afs_do_silly_rename(dvnode, vnode, dentry, sdentry, key); ret = afs_do_silly_rename(dvnode, vnode, dentry, sdentry, key);
switch (ret) { switch (ret) {
...@@ -148,7 +148,7 @@ int afs_sillyrename(struct afs_vnode *dvnode, struct afs_vnode *vnode, ...@@ -148,7 +148,7 @@ int afs_sillyrename(struct afs_vnode *dvnode, struct afs_vnode *vnode,
d_drop(sdentry); d_drop(sdentry);
} }
iput(&vnode->vfs_inode); iput(&vnode->netfs.inode);
dput(sdentry); dput(sdentry);
out: out:
_leave(" = %d", ret); _leave(" = %d", ret);
......
...@@ -76,7 +76,7 @@ struct inode *afs_iget_pseudo_dir(struct super_block *sb, bool root) ...@@ -76,7 +76,7 @@ struct inode *afs_iget_pseudo_dir(struct super_block *sb, bool root)
/* there shouldn't be an existing inode */ /* there shouldn't be an existing inode */
BUG_ON(!(inode->i_state & I_NEW)); BUG_ON(!(inode->i_state & I_NEW));
netfs_i_context_init(inode, NULL); netfs_inode_init(inode, NULL);
inode->i_size = 0; inode->i_size = 0;
inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO; inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
if (root) { if (root) {
......
...@@ -194,7 +194,7 @@ int afs_release(struct inode *inode, struct file *file) ...@@ -194,7 +194,7 @@ int afs_release(struct inode *inode, struct file *file)
afs_put_wb_key(af->wb); afs_put_wb_key(af->wb);
if ((file->f_mode & FMODE_WRITE)) { if ((file->f_mode & FMODE_WRITE)) {
i_size = i_size_read(&vnode->vfs_inode); i_size = i_size_read(&vnode->netfs.inode);
afs_set_cache_aux(vnode, &aux); afs_set_cache_aux(vnode, &aux);
fscache_unuse_cookie(afs_vnode_cache(vnode), &aux, &i_size); fscache_unuse_cookie(afs_vnode_cache(vnode), &aux, &i_size);
} else { } else {
...@@ -325,7 +325,7 @@ static void afs_issue_read(struct netfs_io_subrequest *subreq) ...@@ -325,7 +325,7 @@ static void afs_issue_read(struct netfs_io_subrequest *subreq)
fsreq->iter = &fsreq->def_iter; fsreq->iter = &fsreq->def_iter;
iov_iter_xarray(&fsreq->def_iter, READ, iov_iter_xarray(&fsreq->def_iter, READ,
&fsreq->vnode->vfs_inode.i_mapping->i_pages, &fsreq->vnode->netfs.inode.i_mapping->i_pages,
fsreq->pos, fsreq->len); fsreq->pos, fsreq->len);
afs_fetch_data(fsreq->vnode, fsreq); afs_fetch_data(fsreq->vnode, fsreq);
......
...@@ -232,14 +232,14 @@ int afs_put_operation(struct afs_operation *op) ...@@ -232,14 +232,14 @@ int afs_put_operation(struct afs_operation *op)
if (op->file[1].modification && op->file[1].vnode != op->file[0].vnode) if (op->file[1].modification && op->file[1].vnode != op->file[0].vnode)
clear_bit(AFS_VNODE_MODIFYING, &op->file[1].vnode->flags); clear_bit(AFS_VNODE_MODIFYING, &op->file[1].vnode->flags);
if (op->file[0].put_vnode) if (op->file[0].put_vnode)
iput(&op->file[0].vnode->vfs_inode); iput(&op->file[0].vnode->netfs.inode);
if (op->file[1].put_vnode) if (op->file[1].put_vnode)
iput(&op->file[1].vnode->vfs_inode); iput(&op->file[1].vnode->netfs.inode);
if (op->more_files) { if (op->more_files) {
for (i = 0; i < op->nr_files - 2; i++) for (i = 0; i < op->nr_files - 2; i++)
if (op->more_files[i].put_vnode) if (op->more_files[i].put_vnode)
iput(&op->more_files[i].vnode->vfs_inode); iput(&op->more_files[i].vnode->netfs.inode);
kfree(op->more_files); kfree(op->more_files);
} }
......
...@@ -25,9 +25,6 @@ ...@@ -25,9 +25,6 @@
#include "internal.h" #include "internal.h"
#include "afs_fs.h" #include "afs_fs.h"
// Temporary: netfs does disgusting things with inode pointers
#pragma GCC diagnostic ignored "-Wattribute-warning"
static const struct inode_operations afs_symlink_inode_operations = { static const struct inode_operations afs_symlink_inode_operations = {
.get_link = page_get_link, .get_link = page_get_link,
}; };
...@@ -61,7 +58,7 @@ static noinline void dump_vnode(struct afs_vnode *vnode, struct afs_vnode *paren ...@@ -61,7 +58,7 @@ static noinline void dump_vnode(struct afs_vnode *vnode, struct afs_vnode *paren
*/ */
static void afs_set_netfs_context(struct afs_vnode *vnode) static void afs_set_netfs_context(struct afs_vnode *vnode)
{ {
netfs_i_context_init(&vnode->vfs_inode, &afs_req_ops); netfs_inode_init(&vnode->netfs.inode, &afs_req_ops);
} }
/* /*
...@@ -99,7 +96,7 @@ static int afs_inode_init_from_status(struct afs_operation *op, ...@@ -99,7 +96,7 @@ static int afs_inode_init_from_status(struct afs_operation *op,
inode->i_flags |= S_NOATIME; inode->i_flags |= S_NOATIME;
inode->i_uid = make_kuid(&init_user_ns, status->owner); inode->i_uid = make_kuid(&init_user_ns, status->owner);
inode->i_gid = make_kgid(&init_user_ns, status->group); inode->i_gid = make_kgid(&init_user_ns, status->group);
set_nlink(&vnode->vfs_inode, status->nlink); set_nlink(&vnode->netfs.inode, status->nlink);
switch (status->type) { switch (status->type) {
case AFS_FTYPE_FILE: case AFS_FTYPE_FILE:
...@@ -142,7 +139,7 @@ static int afs_inode_init_from_status(struct afs_operation *op, ...@@ -142,7 +139,7 @@ static int afs_inode_init_from_status(struct afs_operation *op,
afs_set_netfs_context(vnode); afs_set_netfs_context(vnode);
vnode->invalid_before = status->data_version; vnode->invalid_before = status->data_version;
inode_set_iversion_raw(&vnode->vfs_inode, status->data_version); inode_set_iversion_raw(&vnode->netfs.inode, status->data_version);
if (!vp->scb.have_cb) { if (!vp->scb.have_cb) {
/* it's a symlink we just created (the fileserver /* it's a symlink we just created (the fileserver
...@@ -166,7 +163,7 @@ static void afs_apply_status(struct afs_operation *op, ...@@ -166,7 +163,7 @@ static void afs_apply_status(struct afs_operation *op,
{ {
struct afs_file_status *status = &vp->scb.status; struct afs_file_status *status = &vp->scb.status;
struct afs_vnode *vnode = vp->vnode; struct afs_vnode *vnode = vp->vnode;
struct inode *inode = &vnode->vfs_inode; struct inode *inode = &vnode->netfs.inode;
struct timespec64 t; struct timespec64 t;
umode_t mode; umode_t mode;
bool data_changed = false; bool data_changed = false;
...@@ -249,7 +246,7 @@ static void afs_apply_status(struct afs_operation *op, ...@@ -249,7 +246,7 @@ static void afs_apply_status(struct afs_operation *op,
* idea of what the size should be that's not the same as * idea of what the size should be that's not the same as
* what's on the server. * what's on the server.
*/ */
vnode->netfs_ctx.remote_i_size = status->size; vnode->netfs.remote_i_size = status->size;
if (change_size) { if (change_size) {
afs_set_i_size(vnode, status->size); afs_set_i_size(vnode, status->size);
inode->i_ctime = t; inode->i_ctime = t;
...@@ -292,7 +289,7 @@ void afs_vnode_commit_status(struct afs_operation *op, struct afs_vnode_param *v ...@@ -292,7 +289,7 @@ void afs_vnode_commit_status(struct afs_operation *op, struct afs_vnode_param *v
*/ */
if (vp->scb.status.abort_code == VNOVNODE) { if (vp->scb.status.abort_code == VNOVNODE) {
set_bit(AFS_VNODE_DELETED, &vnode->flags); set_bit(AFS_VNODE_DELETED, &vnode->flags);
clear_nlink(&vnode->vfs_inode); clear_nlink(&vnode->netfs.inode);
__afs_break_callback(vnode, afs_cb_break_for_deleted); __afs_break_callback(vnode, afs_cb_break_for_deleted);
op->flags &= ~AFS_OPERATION_DIR_CONFLICT; op->flags &= ~AFS_OPERATION_DIR_CONFLICT;
} }
...@@ -309,8 +306,8 @@ void afs_vnode_commit_status(struct afs_operation *op, struct afs_vnode_param *v ...@@ -309,8 +306,8 @@ void afs_vnode_commit_status(struct afs_operation *op, struct afs_vnode_param *v
if (vp->scb.have_cb) if (vp->scb.have_cb)
afs_apply_callback(op, vp); afs_apply_callback(op, vp);
} else if (vp->op_unlinked && !(op->flags & AFS_OPERATION_DIR_CONFLICT)) { } else if (vp->op_unlinked && !(op->flags & AFS_OPERATION_DIR_CONFLICT)) {
drop_nlink(&vnode->vfs_inode); drop_nlink(&vnode->netfs.inode);
if (vnode->vfs_inode.i_nlink == 0) { if (vnode->netfs.inode.i_nlink == 0) {
set_bit(AFS_VNODE_DELETED, &vnode->flags); set_bit(AFS_VNODE_DELETED, &vnode->flags);
__afs_break_callback(vnode, afs_cb_break_for_deleted); __afs_break_callback(vnode, afs_cb_break_for_deleted);
} }
...@@ -329,7 +326,7 @@ static void afs_fetch_status_success(struct afs_operation *op) ...@@ -329,7 +326,7 @@ static void afs_fetch_status_success(struct afs_operation *op)
struct afs_vnode *vnode = vp->vnode; struct afs_vnode *vnode = vp->vnode;
int ret; int ret;
if (vnode->vfs_inode.i_state & I_NEW) { if (vnode->netfs.inode.i_state & I_NEW) {
ret = afs_inode_init_from_status(op, vp, vnode); ret = afs_inode_init_from_status(op, vp, vnode);
op->error = ret; op->error = ret;
if (ret == 0) if (ret == 0)
...@@ -433,7 +430,7 @@ static void afs_get_inode_cache(struct afs_vnode *vnode) ...@@ -433,7 +430,7 @@ static void afs_get_inode_cache(struct afs_vnode *vnode)
struct afs_vnode_cache_aux aux; struct afs_vnode_cache_aux aux;
if (vnode->status.type != AFS_FTYPE_FILE) { if (vnode->status.type != AFS_FTYPE_FILE) {
vnode->netfs_ctx.cache = NULL; vnode->netfs.cache = NULL;
return; return;
} }
...@@ -460,7 +457,7 @@ static void afs_get_inode_cache(struct afs_vnode *vnode) ...@@ -460,7 +457,7 @@ static void afs_get_inode_cache(struct afs_vnode *vnode)
struct inode *afs_iget(struct afs_operation *op, struct afs_vnode_param *vp) struct inode *afs_iget(struct afs_operation *op, struct afs_vnode_param *vp)
{ {
struct afs_vnode_param *dvp = &op->file[0]; struct afs_vnode_param *dvp = &op->file[0];
struct super_block *sb = dvp->vnode->vfs_inode.i_sb; struct super_block *sb = dvp->vnode->netfs.inode.i_sb;
struct afs_vnode *vnode; struct afs_vnode *vnode;
struct inode *inode; struct inode *inode;
int ret; int ret;
...@@ -585,10 +582,10 @@ static void afs_zap_data(struct afs_vnode *vnode) ...@@ -585,10 +582,10 @@ static void afs_zap_data(struct afs_vnode *vnode)
/* nuke all the non-dirty pages that aren't locked, mapped or being /* nuke all the non-dirty pages that aren't locked, mapped or being
* written back in a regular file and completely discard the pages in a * written back in a regular file and completely discard the pages in a
* directory or symlink */ * directory or symlink */
if (S_ISREG(vnode->vfs_inode.i_mode)) if (S_ISREG(vnode->netfs.inode.i_mode))
invalidate_remote_inode(&vnode->vfs_inode); invalidate_remote_inode(&vnode->netfs.inode);
else else
invalidate_inode_pages2(vnode->vfs_inode.i_mapping); invalidate_inode_pages2(vnode->netfs.inode.i_mapping);
} }
/* /*
...@@ -686,8 +683,8 @@ int afs_validate(struct afs_vnode *vnode, struct key *key) ...@@ -686,8 +683,8 @@ int afs_validate(struct afs_vnode *vnode, struct key *key)
key_serial(key)); key_serial(key));
if (unlikely(test_bit(AFS_VNODE_DELETED, &vnode->flags))) { if (unlikely(test_bit(AFS_VNODE_DELETED, &vnode->flags))) {
if (vnode->vfs_inode.i_nlink) if (vnode->netfs.inode.i_nlink)
clear_nlink(&vnode->vfs_inode); clear_nlink(&vnode->netfs.inode);
goto valid; goto valid;
} }
...@@ -829,7 +826,7 @@ void afs_evict_inode(struct inode *inode) ...@@ -829,7 +826,7 @@ void afs_evict_inode(struct inode *inode)
static void afs_setattr_success(struct afs_operation *op) static void afs_setattr_success(struct afs_operation *op)
{ {
struct afs_vnode_param *vp = &op->file[0]; struct afs_vnode_param *vp = &op->file[0];
struct inode *inode = &vp->vnode->vfs_inode; struct inode *inode = &vp->vnode->netfs.inode;
loff_t old_i_size = i_size_read(inode); loff_t old_i_size = i_size_read(inode);
op->setattr.old_i_size = old_i_size; op->setattr.old_i_size = old_i_size;
...@@ -846,7 +843,7 @@ static void afs_setattr_success(struct afs_operation *op) ...@@ -846,7 +843,7 @@ static void afs_setattr_success(struct afs_operation *op)
static void afs_setattr_edit_file(struct afs_operation *op) static void afs_setattr_edit_file(struct afs_operation *op)
{ {
struct afs_vnode_param *vp = &op->file[0]; struct afs_vnode_param *vp = &op->file[0];
struct inode *inode = &vp->vnode->vfs_inode; struct inode *inode = &vp->vnode->netfs.inode;
if (op->setattr.attr->ia_valid & ATTR_SIZE) { if (op->setattr.attr->ia_valid & ATTR_SIZE) {
loff_t size = op->setattr.attr->ia_size; loff_t size = op->setattr.attr->ia_size;
...@@ -878,7 +875,7 @@ int afs_setattr(struct user_namespace *mnt_userns, struct dentry *dentry, ...@@ -878,7 +875,7 @@ int afs_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
ATTR_MTIME | ATTR_MTIME_SET | ATTR_TIMES_SET | ATTR_TOUCH; ATTR_MTIME | ATTR_MTIME_SET | ATTR_TIMES_SET | ATTR_TOUCH;
struct afs_operation *op; struct afs_operation *op;
struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry)); struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
struct inode *inode = &vnode->vfs_inode; struct inode *inode = &vnode->netfs.inode;
loff_t i_size; loff_t i_size;
int ret; int ret;
......
...@@ -619,12 +619,7 @@ enum afs_lock_state { ...@@ -619,12 +619,7 @@ enum afs_lock_state {
* leak from one inode to another. * leak from one inode to another.
*/ */
struct afs_vnode { struct afs_vnode {
struct { struct netfs_inode netfs; /* Netfslib context and vfs inode */
/* These must be contiguous */
struct inode vfs_inode; /* the VFS's inode record */
struct netfs_i_context netfs_ctx; /* Netfslib context */
};
struct afs_volume *volume; /* volume on which vnode resides */ struct afs_volume *volume; /* volume on which vnode resides */
struct afs_fid fid; /* the file identifier for this inode */ struct afs_fid fid; /* the file identifier for this inode */
struct afs_file_status status; /* AFS status info for this file */ struct afs_file_status status; /* AFS status info for this file */
...@@ -675,7 +670,7 @@ struct afs_vnode { ...@@ -675,7 +670,7 @@ struct afs_vnode {
static inline struct fscache_cookie *afs_vnode_cache(struct afs_vnode *vnode) static inline struct fscache_cookie *afs_vnode_cache(struct afs_vnode *vnode)
{ {
#ifdef CONFIG_AFS_FSCACHE #ifdef CONFIG_AFS_FSCACHE
return netfs_i_cookie(&vnode->vfs_inode); return netfs_i_cookie(&vnode->netfs.inode);
#else #else
return NULL; return NULL;
#endif #endif
...@@ -685,7 +680,7 @@ static inline void afs_vnode_set_cache(struct afs_vnode *vnode, ...@@ -685,7 +680,7 @@ static inline void afs_vnode_set_cache(struct afs_vnode *vnode,
struct fscache_cookie *cookie) struct fscache_cookie *cookie)
{ {
#ifdef CONFIG_AFS_FSCACHE #ifdef CONFIG_AFS_FSCACHE
vnode->netfs_ctx.cache = cookie; vnode->netfs.cache = cookie;
#endif #endif
} }
...@@ -892,7 +887,7 @@ static inline void afs_invalidate_cache(struct afs_vnode *vnode, unsigned int fl ...@@ -892,7 +887,7 @@ static inline void afs_invalidate_cache(struct afs_vnode *vnode, unsigned int fl
afs_set_cache_aux(vnode, &aux); afs_set_cache_aux(vnode, &aux);
fscache_invalidate(afs_vnode_cache(vnode), &aux, fscache_invalidate(afs_vnode_cache(vnode), &aux,
i_size_read(&vnode->vfs_inode), flags); i_size_read(&vnode->netfs.inode), flags);
} }
/* /*
...@@ -1217,7 +1212,7 @@ static inline struct afs_net *afs_i2net(struct inode *inode) ...@@ -1217,7 +1212,7 @@ static inline struct afs_net *afs_i2net(struct inode *inode)
static inline struct afs_net *afs_v2net(struct afs_vnode *vnode) static inline struct afs_net *afs_v2net(struct afs_vnode *vnode)
{ {
return afs_i2net(&vnode->vfs_inode); return afs_i2net(&vnode->netfs.inode);
} }
static inline struct afs_net *afs_sock2net(struct sock *sk) static inline struct afs_net *afs_sock2net(struct sock *sk)
...@@ -1593,12 +1588,12 @@ extern void yfs_fs_store_opaque_acl2(struct afs_operation *); ...@@ -1593,12 +1588,12 @@ extern void yfs_fs_store_opaque_acl2(struct afs_operation *);
*/ */
static inline struct afs_vnode *AFS_FS_I(struct inode *inode) static inline struct afs_vnode *AFS_FS_I(struct inode *inode)
{ {
return container_of(inode, struct afs_vnode, vfs_inode); return container_of(inode, struct afs_vnode, netfs.inode);
} }
static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode) static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode)
{ {
return &vnode->vfs_inode; return &vnode->netfs.inode;
} }
/* /*
...@@ -1621,8 +1616,8 @@ static inline void afs_update_dentry_version(struct afs_operation *op, ...@@ -1621,8 +1616,8 @@ static inline void afs_update_dentry_version(struct afs_operation *op,
*/ */
static inline void afs_set_i_size(struct afs_vnode *vnode, u64 size) static inline void afs_set_i_size(struct afs_vnode *vnode, u64 size)
{ {
i_size_write(&vnode->vfs_inode, size); i_size_write(&vnode->netfs.inode, size);
vnode->vfs_inode.i_blocks = ((size + 1023) >> 10) << 1; vnode->netfs.inode.i_blocks = ((size + 1023) >> 10) << 1;
} }
/* /*
......
...@@ -659,7 +659,7 @@ static void afs_i_init_once(void *_vnode) ...@@ -659,7 +659,7 @@ static void afs_i_init_once(void *_vnode)
struct afs_vnode *vnode = _vnode; struct afs_vnode *vnode = _vnode;
memset(vnode, 0, sizeof(*vnode)); memset(vnode, 0, sizeof(*vnode));
inode_init_once(&vnode->vfs_inode); inode_init_once(&vnode->netfs.inode);
mutex_init(&vnode->io_lock); mutex_init(&vnode->io_lock);
init_rwsem(&vnode->validate_lock); init_rwsem(&vnode->validate_lock);
spin_lock_init(&vnode->wb_lock); spin_lock_init(&vnode->wb_lock);
...@@ -700,8 +700,8 @@ static struct inode *afs_alloc_inode(struct super_block *sb) ...@@ -700,8 +700,8 @@ static struct inode *afs_alloc_inode(struct super_block *sb)
init_rwsem(&vnode->rmdir_lock); init_rwsem(&vnode->rmdir_lock);
INIT_WORK(&vnode->cb_work, afs_invalidate_mmap_work); INIT_WORK(&vnode->cb_work, afs_invalidate_mmap_work);
_leave(" = %p", &vnode->vfs_inode); _leave(" = %p", &vnode->netfs.inode);
return &vnode->vfs_inode; return &vnode->netfs.inode;
} }
static void afs_free_inode(struct inode *inode) static void afs_free_inode(struct inode *inode)
......
...@@ -146,10 +146,10 @@ int afs_write_end(struct file *file, struct address_space *mapping, ...@@ -146,10 +146,10 @@ int afs_write_end(struct file *file, struct address_space *mapping,
write_end_pos = pos + copied; write_end_pos = pos + copied;
i_size = i_size_read(&vnode->vfs_inode); i_size = i_size_read(&vnode->netfs.inode);
if (write_end_pos > i_size) { if (write_end_pos > i_size) {
write_seqlock(&vnode->cb_lock); write_seqlock(&vnode->cb_lock);
i_size = i_size_read(&vnode->vfs_inode); i_size = i_size_read(&vnode->netfs.inode);
if (write_end_pos > i_size) if (write_end_pos > i_size)
afs_set_i_size(vnode, write_end_pos); afs_set_i_size(vnode, write_end_pos);
write_sequnlock(&vnode->cb_lock); write_sequnlock(&vnode->cb_lock);
...@@ -257,7 +257,7 @@ static void afs_redirty_pages(struct writeback_control *wbc, ...@@ -257,7 +257,7 @@ static void afs_redirty_pages(struct writeback_control *wbc,
*/ */
static void afs_pages_written_back(struct afs_vnode *vnode, loff_t start, unsigned int len) static void afs_pages_written_back(struct afs_vnode *vnode, loff_t start, unsigned int len)
{ {
struct address_space *mapping = vnode->vfs_inode.i_mapping; struct address_space *mapping = vnode->netfs.inode.i_mapping;
struct folio *folio; struct folio *folio;
pgoff_t end; pgoff_t end;
...@@ -354,7 +354,6 @@ static const struct afs_operation_ops afs_store_data_operation = { ...@@ -354,7 +354,6 @@ static const struct afs_operation_ops afs_store_data_operation = {
static int afs_store_data(struct afs_vnode *vnode, struct iov_iter *iter, loff_t pos, static int afs_store_data(struct afs_vnode *vnode, struct iov_iter *iter, loff_t pos,
bool laundering) bool laundering)
{ {
struct netfs_i_context *ictx = &vnode->netfs_ctx;
struct afs_operation *op; struct afs_operation *op;
struct afs_wb_key *wbk = NULL; struct afs_wb_key *wbk = NULL;
loff_t size = iov_iter_count(iter); loff_t size = iov_iter_count(iter);
...@@ -385,9 +384,9 @@ static int afs_store_data(struct afs_vnode *vnode, struct iov_iter *iter, loff_t ...@@ -385,9 +384,9 @@ static int afs_store_data(struct afs_vnode *vnode, struct iov_iter *iter, loff_t
op->store.write_iter = iter; op->store.write_iter = iter;
op->store.pos = pos; op->store.pos = pos;
op->store.size = size; op->store.size = size;
op->store.i_size = max(pos + size, ictx->remote_i_size); op->store.i_size = max(pos + size, vnode->netfs.remote_i_size);
op->store.laundering = laundering; op->store.laundering = laundering;
op->mtime = vnode->vfs_inode.i_mtime; op->mtime = vnode->netfs.inode.i_mtime;
op->flags |= AFS_OPERATION_UNINTR; op->flags |= AFS_OPERATION_UNINTR;
op->ops = &afs_store_data_operation; op->ops = &afs_store_data_operation;
...@@ -554,7 +553,7 @@ static ssize_t afs_write_back_from_locked_folio(struct address_space *mapping, ...@@ -554,7 +553,7 @@ static ssize_t afs_write_back_from_locked_folio(struct address_space *mapping,
struct iov_iter iter; struct iov_iter iter;
unsigned long priv; unsigned long priv;
unsigned int offset, to, len, max_len; unsigned int offset, to, len, max_len;
loff_t i_size = i_size_read(&vnode->vfs_inode); loff_t i_size = i_size_read(&vnode->netfs.inode);
bool new_content = test_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags); bool new_content = test_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
bool caching = fscache_cookie_enabled(afs_vnode_cache(vnode)); bool caching = fscache_cookie_enabled(afs_vnode_cache(vnode));
long count = wbc->nr_to_write; long count = wbc->nr_to_write;
...@@ -845,7 +844,7 @@ ssize_t afs_file_write(struct kiocb *iocb, struct iov_iter *from) ...@@ -845,7 +844,7 @@ ssize_t afs_file_write(struct kiocb *iocb, struct iov_iter *from)
_enter("{%llx:%llu},{%zu},", _enter("{%llx:%llu},{%zu},",
vnode->fid.vid, vnode->fid.vnode, count); vnode->fid.vid, vnode->fid.vnode, count);
if (IS_SWAPFILE(&vnode->vfs_inode)) { if (IS_SWAPFILE(&vnode->netfs.inode)) {
printk(KERN_INFO printk(KERN_INFO
"AFS: Attempt to write to active swap file!\n"); "AFS: Attempt to write to active swap file!\n");
return -EBUSY; return -EBUSY;
...@@ -958,8 +957,8 @@ void afs_prune_wb_keys(struct afs_vnode *vnode) ...@@ -958,8 +957,8 @@ void afs_prune_wb_keys(struct afs_vnode *vnode)
/* Discard unused keys */ /* Discard unused keys */
spin_lock(&vnode->wb_lock); spin_lock(&vnode->wb_lock);
if (!mapping_tagged(&vnode->vfs_inode.i_data, PAGECACHE_TAG_WRITEBACK) && if (!mapping_tagged(&vnode->netfs.inode.i_data, PAGECACHE_TAG_WRITEBACK) &&
!mapping_tagged(&vnode->vfs_inode.i_data, PAGECACHE_TAG_DIRTY)) { !mapping_tagged(&vnode->netfs.inode.i_data, PAGECACHE_TAG_DIRTY)) {
list_for_each_entry_safe(wbk, tmp, &vnode->wb_keys, vnode_link) { list_for_each_entry_safe(wbk, tmp, &vnode->wb_keys, vnode_link) {
if (refcount_read(&wbk->usage) == 1) if (refcount_read(&wbk->usage) == 1)
list_move(&wbk->vnode_link, &graveyard); list_move(&wbk->vnode_link, &graveyard);
...@@ -1034,6 +1033,6 @@ static void afs_write_to_cache(struct afs_vnode *vnode, ...@@ -1034,6 +1033,6 @@ static void afs_write_to_cache(struct afs_vnode *vnode,
bool caching) bool caching)
{ {
fscache_write_to_cache(afs_vnode_cache(vnode), fscache_write_to_cache(afs_vnode_cache(vnode),
vnode->vfs_inode.i_mapping, start, len, i_size, vnode->netfs.inode.i_mapping, start, len, i_size,
afs_write_to_cache_done, vnode, caching); afs_write_to_cache_done, vnode, caching);
} }
...@@ -1798,7 +1798,7 @@ enum { ...@@ -1798,7 +1798,7 @@ enum {
static int __ceph_pool_perm_get(struct ceph_inode_info *ci, static int __ceph_pool_perm_get(struct ceph_inode_info *ci,
s64 pool, struct ceph_string *pool_ns) s64 pool, struct ceph_string *pool_ns)
{ {
struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode); struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->netfs.inode);
struct ceph_mds_client *mdsc = fsc->mdsc; struct ceph_mds_client *mdsc = fsc->mdsc;
struct ceph_osd_request *rd_req = NULL, *wr_req = NULL; struct ceph_osd_request *rd_req = NULL, *wr_req = NULL;
struct rb_node **p, *parent; struct rb_node **p, *parent;
...@@ -1913,7 +1913,7 @@ static int __ceph_pool_perm_get(struct ceph_inode_info *ci, ...@@ -1913,7 +1913,7 @@ static int __ceph_pool_perm_get(struct ceph_inode_info *ci,
0, false, true); 0, false, true);
err = ceph_osdc_start_request(&fsc->client->osdc, rd_req, false); err = ceph_osdc_start_request(&fsc->client->osdc, rd_req, false);
wr_req->r_mtime = ci->vfs_inode.i_mtime; wr_req->r_mtime = ci->netfs.inode.i_mtime;
err2 = ceph_osdc_start_request(&fsc->client->osdc, wr_req, false); err2 = ceph_osdc_start_request(&fsc->client->osdc, wr_req, false);
if (!err) if (!err)
......
...@@ -29,9 +29,9 @@ void ceph_fscache_register_inode_cookie(struct inode *inode) ...@@ -29,9 +29,9 @@ void ceph_fscache_register_inode_cookie(struct inode *inode)
if (!(inode->i_state & I_NEW)) if (!(inode->i_state & I_NEW))
return; return;
WARN_ON_ONCE(ci->netfs_ctx.cache); WARN_ON_ONCE(ci->netfs.cache);
ci->netfs_ctx.cache = ci->netfs.cache =
fscache_acquire_cookie(fsc->fscache, 0, fscache_acquire_cookie(fsc->fscache, 0,
&ci->i_vino, sizeof(ci->i_vino), &ci->i_vino, sizeof(ci->i_vino),
&ci->i_version, sizeof(ci->i_version), &ci->i_version, sizeof(ci->i_version),
......
...@@ -28,7 +28,7 @@ void ceph_fscache_invalidate(struct inode *inode, bool dio_write); ...@@ -28,7 +28,7 @@ void ceph_fscache_invalidate(struct inode *inode, bool dio_write);
static inline struct fscache_cookie *ceph_fscache_cookie(struct ceph_inode_info *ci) static inline struct fscache_cookie *ceph_fscache_cookie(struct ceph_inode_info *ci)
{ {
return netfs_i_cookie(&ci->vfs_inode); return netfs_i_cookie(&ci->netfs.inode);
} }
static inline void ceph_fscache_resize(struct inode *inode, loff_t to) static inline void ceph_fscache_resize(struct inode *inode, loff_t to)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment