All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Emanuele Giuseppe Esposito <eesposit@redhat.com>,
	linux-nfs@vger.kernel.org
Cc: kbuild-all@lists.01.org, Paolo Bonzini <pbonzini@redhat.com>,
	Emanuele Giuseppe Esposito <eesposit@redhat.com>,
	Jeremy Kerr <jk@ozlabs.org>, Arnd Bergmann <arnd@arndb.de>,
	Michael Ellerman <mpe@ellerman.id.au>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Paul Mackerras <paulus@samba.org>,
	Heiko Carstens <heiko.carstens@de.ibm.com>,
	Vasily Gorbik <gor@linux.ibm.com>
Subject: Re: [PATCH 1/8] apparmor: just use vfs_kern_mount to make .null
Date: Wed, 15 Apr 2020 20:52:14 +0800	[thread overview]
Message-ID: <202004152043.SzO84bu2%lkp@intel.com> (raw)
In-Reply-To: <20200414124304.4470-2-eesposit@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 5789 bytes --]

Hi Emanuele,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on char-misc/char-misc-testing]
[also build test ERROR on driver-core/driver-core-testing linus/master v5.7-rc1 next-20200415]
[cannot apply to security/next-testing]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Emanuele-Giuseppe-Esposito/Simplefs-group-and-simplify-linux-fs-code/20200415-030834
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git 885a64715fd81e6af6d94a038556e0b2e6deb19c
config: x86_64-rhel-7.6 (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>

Note: the linux-review/Emanuele-Giuseppe-Esposito/Simplefs-group-and-simplify-linux-fs-code/20200415-030834 HEAD 3016bd2448d788b615dc4b927f320d2463dd67da builds fine.
      It only hurts bisectibility.

All error/warnings (new ones prefixed by >>):

   security/apparmor/apparmorfs.c: In function 'aa_mk_null_file':
>> security/apparmor/apparmorfs.c:2540:3: error: 'error' undeclared (first use in this function); did you mean 'errorf'?
      error = PTR_ERR(dentry);
      ^~~~~
      errorf
   security/apparmor/apparmorfs.c:2540:3: note: each undeclared identifier is reported only once for each function it appears in
>> security/apparmor/apparmorfs.c:2566:1: warning: control reaches end of non-void function [-Wreturn-type]
    }
    ^

vim +2540 security/apparmor/apparmorfs.c

a71ada305801e9 John Johansen              2017-01-16  2525  
a71ada305801e9 John Johansen              2017-01-16  2526  static int aa_mk_null_file(struct dentry *parent)
a71ada305801e9 John Johansen              2017-01-16  2527  {
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2528  	struct file_system_type *type = parent->d_sb->s_type;
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2529  	struct vfsmount *mount;
a71ada305801e9 John Johansen              2017-01-16  2530  	struct dentry *dentry;
a71ada305801e9 John Johansen              2017-01-16  2531  	struct inode *inode;
a71ada305801e9 John Johansen              2017-01-16  2532  
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2533  	mount = vfs_kern_mount(type, SB_KERNMOUNT, type->name, NULL);
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2534  	if (IS_ERR(mount))
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2535  		return PTR_ERR(mount);
a71ada305801e9 John Johansen              2017-01-16  2536  
a71ada305801e9 John Johansen              2017-01-16  2537  	inode_lock(d_inode(parent));
a71ada305801e9 John Johansen              2017-01-16  2538  	dentry = lookup_one_len(NULL_FILE_NAME, parent, strlen(NULL_FILE_NAME));
a71ada305801e9 John Johansen              2017-01-16  2539  	if (IS_ERR(dentry)) {
a71ada305801e9 John Johansen              2017-01-16 @2540  		error = PTR_ERR(dentry);
a71ada305801e9 John Johansen              2017-01-16  2541  		goto out;
a71ada305801e9 John Johansen              2017-01-16  2542  	}
a71ada305801e9 John Johansen              2017-01-16  2543  	inode = new_inode(parent->d_inode->i_sb);
a71ada305801e9 John Johansen              2017-01-16  2544  	if (!inode) {
a71ada305801e9 John Johansen              2017-01-16  2545  		error = -ENOMEM;
a71ada305801e9 John Johansen              2017-01-16  2546  		goto out1;
a71ada305801e9 John Johansen              2017-01-16  2547  	}
a71ada305801e9 John Johansen              2017-01-16  2548  
a71ada305801e9 John Johansen              2017-01-16  2549  	inode->i_ino = get_next_ino();
a71ada305801e9 John Johansen              2017-01-16  2550  	inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO;
24d0d03c2edcd2 Deepa Dinamani             2017-05-08  2551  	inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
a71ada305801e9 John Johansen              2017-01-16  2552  	init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO,
a71ada305801e9 John Johansen              2017-01-16  2553  			   MKDEV(MEM_MAJOR, 3));
a71ada305801e9 John Johansen              2017-01-16  2554  	d_instantiate(dentry, inode);
a71ada305801e9 John Johansen              2017-01-16  2555  	aa_null.dentry = dget(dentry);
a71ada305801e9 John Johansen              2017-01-16  2556  	aa_null.mnt = mntget(mount);
a71ada305801e9 John Johansen              2017-01-16  2557  
a71ada305801e9 John Johansen              2017-01-16  2558  	error = 0;
a71ada305801e9 John Johansen              2017-01-16  2559  
a71ada305801e9 John Johansen              2017-01-16  2560  out1:
a71ada305801e9 John Johansen              2017-01-16  2561  	dput(dentry);
a71ada305801e9 John Johansen              2017-01-16  2562  out:
a71ada305801e9 John Johansen              2017-01-16  2563  	inode_unlock(d_inode(parent));
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2564  	mntput(mount);
a71ada305801e9 John Johansen              2017-01-16  2565  	return error;
a71ada305801e9 John Johansen              2017-01-16 @2566  }
a71ada305801e9 John Johansen              2017-01-16  2567  

:::::: The code at line 2540 was first introduced by commit
:::::: a71ada305801e940ff69c2c58489778760e5148b apparmor: add special .null file used to "close" fds at exec

:::::: TO: John Johansen <john.johansen@canonical.com>
:::::: CC: John Johansen <john.johansen@canonical.com>

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 49217 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 1/8] apparmor: just use vfs_kern_mount to make .null
Date: Wed, 15 Apr 2020 20:52:14 +0800	[thread overview]
Message-ID: <202004152043.SzO84bu2%lkp@intel.com> (raw)
In-Reply-To: <20200414124304.4470-2-eesposit@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 5883 bytes --]

Hi Emanuele,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on char-misc/char-misc-testing]
[also build test ERROR on driver-core/driver-core-testing linus/master v5.7-rc1 next-20200415]
[cannot apply to security/next-testing]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Emanuele-Giuseppe-Esposito/Simplefs-group-and-simplify-linux-fs-code/20200415-030834
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git 885a64715fd81e6af6d94a038556e0b2e6deb19c
config: x86_64-rhel-7.6 (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>

Note: the linux-review/Emanuele-Giuseppe-Esposito/Simplefs-group-and-simplify-linux-fs-code/20200415-030834 HEAD 3016bd2448d788b615dc4b927f320d2463dd67da builds fine.
      It only hurts bisectibility.

All error/warnings (new ones prefixed by >>):

   security/apparmor/apparmorfs.c: In function 'aa_mk_null_file':
>> security/apparmor/apparmorfs.c:2540:3: error: 'error' undeclared (first use in this function); did you mean 'errorf'?
      error = PTR_ERR(dentry);
      ^~~~~
      errorf
   security/apparmor/apparmorfs.c:2540:3: note: each undeclared identifier is reported only once for each function it appears in
>> security/apparmor/apparmorfs.c:2566:1: warning: control reaches end of non-void function [-Wreturn-type]
    }
    ^

vim +2540 security/apparmor/apparmorfs.c

a71ada305801e9 John Johansen              2017-01-16  2525  
a71ada305801e9 John Johansen              2017-01-16  2526  static int aa_mk_null_file(struct dentry *parent)
a71ada305801e9 John Johansen              2017-01-16  2527  {
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2528  	struct file_system_type *type = parent->d_sb->s_type;
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2529  	struct vfsmount *mount;
a71ada305801e9 John Johansen              2017-01-16  2530  	struct dentry *dentry;
a71ada305801e9 John Johansen              2017-01-16  2531  	struct inode *inode;
a71ada305801e9 John Johansen              2017-01-16  2532  
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2533  	mount = vfs_kern_mount(type, SB_KERNMOUNT, type->name, NULL);
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2534  	if (IS_ERR(mount))
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2535  		return PTR_ERR(mount);
a71ada305801e9 John Johansen              2017-01-16  2536  
a71ada305801e9 John Johansen              2017-01-16  2537  	inode_lock(d_inode(parent));
a71ada305801e9 John Johansen              2017-01-16  2538  	dentry = lookup_one_len(NULL_FILE_NAME, parent, strlen(NULL_FILE_NAME));
a71ada305801e9 John Johansen              2017-01-16  2539  	if (IS_ERR(dentry)) {
a71ada305801e9 John Johansen              2017-01-16 @2540  		error = PTR_ERR(dentry);
a71ada305801e9 John Johansen              2017-01-16  2541  		goto out;
a71ada305801e9 John Johansen              2017-01-16  2542  	}
a71ada305801e9 John Johansen              2017-01-16  2543  	inode = new_inode(parent->d_inode->i_sb);
a71ada305801e9 John Johansen              2017-01-16  2544  	if (!inode) {
a71ada305801e9 John Johansen              2017-01-16  2545  		error = -ENOMEM;
a71ada305801e9 John Johansen              2017-01-16  2546  		goto out1;
a71ada305801e9 John Johansen              2017-01-16  2547  	}
a71ada305801e9 John Johansen              2017-01-16  2548  
a71ada305801e9 John Johansen              2017-01-16  2549  	inode->i_ino = get_next_ino();
a71ada305801e9 John Johansen              2017-01-16  2550  	inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO;
24d0d03c2edcd2 Deepa Dinamani             2017-05-08  2551  	inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
a71ada305801e9 John Johansen              2017-01-16  2552  	init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO,
a71ada305801e9 John Johansen              2017-01-16  2553  			   MKDEV(MEM_MAJOR, 3));
a71ada305801e9 John Johansen              2017-01-16  2554  	d_instantiate(dentry, inode);
a71ada305801e9 John Johansen              2017-01-16  2555  	aa_null.dentry = dget(dentry);
a71ada305801e9 John Johansen              2017-01-16  2556  	aa_null.mnt = mntget(mount);
a71ada305801e9 John Johansen              2017-01-16  2557  
a71ada305801e9 John Johansen              2017-01-16  2558  	error = 0;
a71ada305801e9 John Johansen              2017-01-16  2559  
a71ada305801e9 John Johansen              2017-01-16  2560  out1:
a71ada305801e9 John Johansen              2017-01-16  2561  	dput(dentry);
a71ada305801e9 John Johansen              2017-01-16  2562  out:
a71ada305801e9 John Johansen              2017-01-16  2563  	inode_unlock(d_inode(parent));
4b30b45c1ddc88 Emanuele Giuseppe Esposito 2020-04-14  2564  	mntput(mount);
a71ada305801e9 John Johansen              2017-01-16  2565  	return error;
a71ada305801e9 John Johansen              2017-01-16 @2566  }
a71ada305801e9 John Johansen              2017-01-16  2567  

:::::: The code at line 2540 was first introduced by commit
:::::: a71ada305801e940ff69c2c58489778760e5148b apparmor: add special .null file used to "close" fds at exec

:::::: TO: John Johansen <john.johansen@canonical.com>
:::::: CC: John Johansen <john.johansen@canonical.com>

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 49217 bytes --]

  reply	other threads:[~2020-04-15 12:55 UTC|newest]

Thread overview: 130+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-14 12:42 [Ocfs2-devel] [PATCH 0/8] Simplefs: group and simplify linux fs code Emanuele Giuseppe Esposito
2020-04-14 12:42 ` Emanuele Giuseppe Esposito
2020-04-14 12:42 ` Emanuele Giuseppe Esposito
2020-04-14 12:42 ` Emanuele Giuseppe Esposito
2020-04-14 12:42 ` Emanuele Giuseppe Esposito
2020-04-14 12:42 ` [Ocfs2-devel] [PATCH 1/8] apparmor: just use vfs_kern_mount to make .null Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-15 12:52   ` kbuild test robot [this message]
2020-04-15 12:52     ` kbuild test robot
2020-04-16  6:44   ` [Ocfs2-devel] " Luis Chamberlain
2020-04-16  6:44     ` Luis Chamberlain
2020-04-16  6:44     ` Luis Chamberlain
2020-04-16  6:44     ` Luis Chamberlain
2020-04-16  6:44     ` Luis Chamberlain
2020-04-20 14:00     ` Emanuele Giuseppe Esposito
2020-04-20 14:00       ` Emanuele Giuseppe Esposito
2020-04-20 14:00       ` Emanuele Giuseppe Esposito
2020-04-20 14:00       ` Emanuele Giuseppe Esposito
2020-04-14 12:42 ` [Ocfs2-devel] [PATCH 2/8] fs: extract simple_pin/release_fs to separate files Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:54   ` [Ocfs2-devel] " Greg Kroah-Hartman
2020-04-14 12:54     ` Greg Kroah-Hartman
2020-04-14 12:54     ` Greg Kroah-Hartman
2020-04-14 12:54     ` Greg Kroah-Hartman
2020-04-14 12:54     ` Greg Kroah-Hartman
2020-04-15  0:57   ` kbuild test robot
2020-04-15  0:57     ` kbuild test robot
2020-04-15  0:57     ` kbuild test robot
2020-04-16  6:52   ` [Ocfs2-devel] " Luis Chamberlain
2020-04-16  6:52     ` Luis Chamberlain
2020-04-16  6:52     ` Luis Chamberlain
2020-04-16  6:52     ` Luis Chamberlain
2020-04-16  6:52     ` Luis Chamberlain
2020-04-21 11:19   ` [Ocfs2-devel] " Frederic Barrat
2020-04-21 11:19     ` Frederic Barrat
2020-04-21 11:19     ` Frederic Barrat
2020-04-21 11:19     ` Frederic Barrat
2020-04-21 11:19     ` Frederic Barrat
2020-04-21 11:26     ` [Ocfs2-devel] " Emanuele Giuseppe Esposito
2020-04-21 11:26       ` Emanuele Giuseppe Esposito
2020-04-21 11:26       ` Emanuele Giuseppe Esposito
2020-04-21 11:26       ` Emanuele Giuseppe Esposito
2020-04-21 11:26       ` Emanuele Giuseppe Esposito
2020-04-14 12:42 ` [Ocfs2-devel] [PATCH 3/8] fs: wrap simple_pin_fs/simple_release_fs arguments in a struct Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 13:03   ` [Ocfs2-devel] " Greg Kroah-Hartman
2020-04-14 13:03     ` Greg Kroah-Hartman
2020-04-14 13:03     ` Greg Kroah-Hartman
2020-04-14 13:03     ` Greg Kroah-Hartman
2020-04-14 13:03     ` Greg Kroah-Hartman
2020-04-14 23:24   ` kbuild test robot
2020-04-14 23:24     ` kbuild test robot
2020-04-14 12:42 ` [Ocfs2-devel] [PATCH 4/8] fs: introduce simple_new_inode Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 13:01   ` [Ocfs2-devel] " Greg Kroah-Hartman
2020-04-14 13:01     ` Greg Kroah-Hartman
2020-04-14 13:01     ` Greg Kroah-Hartman
2020-04-14 13:01     ` Greg Kroah-Hartman
2020-04-14 13:01     ` Greg Kroah-Hartman
2020-04-20 13:58     ` [Ocfs2-devel] " Emanuele Giuseppe Esposito
2020-04-20 13:58       ` Emanuele Giuseppe Esposito
2020-04-20 13:58       ` Emanuele Giuseppe Esposito
2020-04-20 13:58       ` Emanuele Giuseppe Esposito
2020-04-20 13:58       ` Emanuele Giuseppe Esposito
2020-04-14 12:42 ` [Ocfs2-devel] [PATCH 5/8] simplefs: add alloc_anon_inode wrapper Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:42   ` Emanuele Giuseppe Esposito
2020-04-14 12:55   ` [Ocfs2-devel] " Greg Kroah-Hartman
2020-04-14 12:55     ` Greg Kroah-Hartman
2020-04-14 12:55     ` Greg Kroah-Hartman
2020-04-14 12:55     ` Greg Kroah-Hartman
2020-04-14 12:55     ` Greg Kroah-Hartman
2020-04-14 12:43 ` [Ocfs2-devel] [PATCH 6/8] simplefs: add file creation functions Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:56   ` [Ocfs2-devel] " Greg Kroah-Hartman
2020-04-14 12:56     ` Greg Kroah-Hartman
2020-04-14 12:56     ` Greg Kroah-Hartman
2020-04-14 12:56     ` Greg Kroah-Hartman
2020-04-14 12:56     ` Greg Kroah-Hartman
2020-04-20 13:57     ` [Ocfs2-devel] " Emanuele Giuseppe Esposito
2020-04-20 13:57       ` Emanuele Giuseppe Esposito
2020-04-20 13:57       ` Emanuele Giuseppe Esposito
2020-04-20 13:57       ` Emanuele Giuseppe Esposito
2020-04-20 13:57       ` Emanuele Giuseppe Esposito
2020-04-20 14:28       ` [Ocfs2-devel] " Greg Kroah-Hartman
2020-04-20 14:28         ` Greg Kroah-Hartman
2020-04-20 14:28         ` Greg Kroah-Hartman
2020-04-20 14:28         ` Greg Kroah-Hartman
2020-04-20 14:28         ` Greg Kroah-Hartman
2020-04-20 14:33         ` [Ocfs2-devel] " Paolo Bonzini
2020-04-20 14:33           ` Paolo Bonzini
2020-04-20 14:33           ` Paolo Bonzini
2020-04-20 14:33           ` Paolo Bonzini
2020-04-20 14:33           ` Paolo Bonzini
2020-04-14 12:43 ` [Ocfs2-devel] [PATCH 7/8] debugfs: switch to simplefs inode creation API Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43 ` [Ocfs2-devel] [PATCH 8/8] tracefs: " Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-14 12:43   ` Emanuele Giuseppe Esposito
2020-04-16  6:59 ` [Ocfs2-devel] [PATCH 0/8] Simplefs: group and simplify linux fs code Luis Chamberlain
2020-04-16  6:59   ` Luis Chamberlain
2020-04-16  6:59   ` Luis Chamberlain
2020-04-16  6:59   ` Luis Chamberlain
2020-04-16  6:59   ` Luis Chamberlain
2020-04-20 14:01   ` Emanuele Giuseppe Esposito
2020-04-20 14:01     ` Emanuele Giuseppe Esposito
2020-04-20 14:01     ` Emanuele Giuseppe Esposito
2020-04-20 14:01     ` Emanuele Giuseppe Esposito

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202004152043.SzO84bu2%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=arnd@arndb.de \
    --cc=benh@kernel.crashing.org \
    --cc=eesposit@redhat.com \
    --cc=gor@linux.ibm.com \
    --cc=heiko.carstens@de.ibm.com \
    --cc=jk@ozlabs.org \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=mpe@ellerman.id.au \
    --cc=paulus@samba.org \
    --cc=pbonzini@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.