[PATCH 1/1] shiftfs: specify struct members

From: Serge E. Hallyn
Date: Sun May 17 2020 - 17:28:35 EST


struct path is declared as randomize_layout, so specify the
struct members when initializing to avoid build failure.

Signed-off-by: Serge Hallyn <shallyn@xxxxxxxxx>
---

[ this is for https://git.kernel.org/pub/scm/linux/kernel/git/jejb/binfmt_misc.git/commit/?h=shiftfs-v3 ,
which i was just building for an experiment ]

fs/shiftfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/shiftfs.c b/fs/shiftfs.c
index 7984a93745d2..6028244c2f42 100644
--- a/fs/shiftfs.c
+++ b/fs/shiftfs.c
@@ -535,7 +535,7 @@ static int shiftfs_getattr(const struct path *path, struct kstat *stat,
struct dentry *real = path->dentry->d_fsdata;
struct inode *reali = real->d_inode;
const struct inode_operations *iop = reali->i_op;
- struct path newpath = { path->dentry->d_sb->s_fs_info, real };
+ struct path newpath = { .mnt = path->dentry->d_sb->s_fs_info, .dentry = real };
int err = 0;

if (iop->getattr)
--
2.17.1