From: Stephen Rothwell <sfr@canb.auug.org.au>
To: Daniel Borkmann <daniel@iogearbox.net>,
Alexei Starovoitov <ast@kernel.org>,
Andrii Nakryiko <andrii@kernel.org>,
Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>, bpf <bpf@vger.kernel.org>,
Networking <netdev@vger.kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Linux Next Mailing List <linux-next@vger.kernel.org>
Subject: Re: linux-next: build failure after merge of the bpf-next tree
Date: Mon, 16 Sep 2024 09:27:56 +1000 [thread overview]
Message-ID: <20240916092756.74401da1@canb.auug.org.au> (raw)
In-Reply-To: <20240913134504.37384c93@canb.auug.org.au>
[-- Attachment #1: Type: text/plain, Size: 4693 bytes --]
Hi all,
On Fri, 13 Sep 2024 13:45:04 +1000 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> After merging the bpf-next tree, today's linux-next build (powerpc
> ppc64_defconfig) failed like this:
>
>
> Caused by commit
>
> 1da91ea87aef ("introduce fd_file(), convert all accessors to it.")
>
> interacting with commits
>
> 1a61c9d6ec1d ("xattr: handle AT_EMPTY_PATH when setting xattrs")
> 278397b2c592 ("xattr: handle AT_EMPTY_PATH when getting xattrs")
> 5560ab7ee32e ("xattr: handle AT_EMPTY_PATH when listing xattrs")
> 33fce6444e7d ("xattr: handle AT_EMPTY_PATH when removing xattrs")
>
> I have applied the following patch for today.
>
> From: Stephen Rothwell <sfr@canb.auug.org.au>
> Date: Fri, 13 Sep 2024 13:40:17 +1000
> Subject: [PATCH] fix up 2 for "introduce fd_file(), convert all accessors to it."
>
> interacting with commits
>
> 1a61c9d6ec1d ("xattr: handle AT_EMPTY_PATH when setting xattrs")
> 278397b2c592 ("xattr: handle AT_EMPTY_PATH when getting xattrs")
> 5560ab7ee32e ("xattr: handle AT_EMPTY_PATH when listing xattrs")
> 33fce6444e7d ("xattr: handle AT_EMPTY_PATH when removing xattrs")
>
> from the vfs-brauner tree.
>
> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
> ---
> fs/xattr.c | 32 ++++++++++++++++----------------
> 1 file changed, 16 insertions(+), 16 deletions(-)
>
> diff --git a/fs/xattr.c b/fs/xattr.c
> index fa992953fa78..f3559ed3279f 100644
> --- a/fs/xattr.c
> +++ b/fs/xattr.c
> @@ -645,7 +645,7 @@ static int do_fsetxattr(int fd, const char __user *name,
> int error;
>
> CLASS(fd, f)(fd);
> - if (!fd_file(f))
> + if (fd_empty(f))
> return -EBADF;
>
> audit_file(fd_file(f));
> @@ -829,10 +829,10 @@ static ssize_t path_getxattrat(int dfd, const char __user *pathname,
>
> if (at_flags & AT_EMPTY_PATH && vfs_empty_path(dfd, pathname)) {
> CLASS(fd, f)(dfd);
> - if (!f.file)
> + if (fd_empty(f))
> return -EBADF;
> - audit_file(f.file);
> - return getxattr(file_mnt_idmap(f.file), file_dentry(f.file),
> + audit_file(fd_file(f));
> + return getxattr(file_mnt_idmap(fd_file(f)), file_dentry(fd_file(f)),
> name, value, size);
> }
>
> @@ -895,7 +895,7 @@ SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
> struct fd f = fdget(fd);
> ssize_t error = -EBADF;
>
> - if (!fd_file(f))
> + if (fd_empty(f))
> return error;
> audit_file(fd_file(f));
> error = getxattr(file_mnt_idmap(fd_file(f)), fd_file(f)->f_path.dentry,
> @@ -949,10 +949,10 @@ static ssize_t path_listxattrat(int dfd, const char __user *pathname,
>
> if (at_flags & AT_EMPTY_PATH && vfs_empty_path(dfd, pathname)) {
> CLASS(fd, f)(dfd);
> - if (!f.file)
> + if (fd_empty(f))
> return -EBADF;
> - audit_file(f.file);
> - return listxattr(file_dentry(f.file), list, size);
> + audit_file(fd_file(f));
> + return listxattr(file_dentry(fd_file(f)), list, size);
> }
>
> lookup_flags = (at_flags & AT_SYMLINK_NOFOLLOW) ? 0 : LOOKUP_FOLLOW;
> @@ -993,7 +993,7 @@ SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
> struct fd f = fdget(fd);
> ssize_t error = -EBADF;
>
> - if (!fd_file(f))
> + if (fd_empty(f))
> return error;
> audit_file(fd_file(f));
> error = listxattr(fd_file(f)->f_path.dentry, list, size);
> @@ -1018,9 +1018,9 @@ static int do_fremovexattr(int fd, const char __user *name)
> int error = -EBADF;
>
> CLASS(fd, f)(fd);
> - if (!f.file)
> + if (fd_empty(f))
> return error;
> - audit_file(f.file);
> + audit_file(fd_file(f));
>
> error = strncpy_from_user(kname, name, sizeof(kname));
> if (error == 0 || error == sizeof(kname))
> @@ -1028,11 +1028,11 @@ static int do_fremovexattr(int fd, const char __user *name)
> if (error < 0)
> return error;
>
> - error = mnt_want_write_file(f.file);
> + error = mnt_want_write_file(fd_file(f));
> if (!error) {
> - error = removexattr(file_mnt_idmap(f.file),
> - f.file->f_path.dentry, kname);
> - mnt_drop_write_file(f.file);
> + error = removexattr(file_mnt_idmap(fd_file(f)),
> + fd_file(f)->f_path.dentry, kname);
> + mnt_drop_write_file(fd_file(f));
> }
> return error;
> }
> @@ -1099,7 +1099,7 @@ SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
> char kname[XATTR_NAME_MAX + 1];
> int error = -EBADF;
>
> - if (!fd_file(f))
> + if (fd_empty(f))
> return error;
> audit_file(fd_file(f));
>
> --
> 2.45.2
This is not longer required as the above commits have been removed from
the vfs-brauner tree.
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2024-09-15 23:27 UTC|newest]
Thread overview: 68+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-13 3:45 linux-next: build failure after merge of the bpf-next tree Stephen Rothwell
2024-09-13 3:48 ` Stephen Rothwell
2024-09-15 23:27 ` Stephen Rothwell [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-04-27 13:26 Thierry Reding
2026-04-27 13:34 ` Thierry Reding
2026-04-27 13:43 ` Alan Maguire
2026-04-28 18:26 ` sashiko-bot
2025-03-19 2:33 Stephen Rothwell
2025-03-19 2:46 ` Alexei Starovoitov
2025-03-19 3:28 ` Stephen Rothwell
2025-03-19 13:37 ` Kumar Kartikeya Dwivedi
2025-03-19 13:43 ` Kumar Kartikeya Dwivedi
2025-03-19 14:36 ` Kumar Kartikeya Dwivedi
2025-03-19 14:55 ` Alexei Starovoitov
2025-03-19 15:11 ` Alexei Starovoitov
2025-03-19 16:06 ` Uros Bizjak
2025-03-19 18:56 ` Alexei Starovoitov
2025-03-19 19:43 ` Uros Bizjak
2025-03-19 23:16 ` Alexei Starovoitov
2025-03-20 7:49 ` Uros Bizjak
2025-03-20 23:17 ` Alexei Starovoitov
2025-03-21 7:15 ` Uros Bizjak
2025-03-19 5:03 ` Uros Bizjak
2025-03-12 3:52 Stephen Rothwell
2024-10-16 6:05 Stephen Rothwell
2024-10-16 16:25 ` Alexei Starovoitov
2024-10-16 18:35 ` Namhyung Kim
2024-10-16 19:32 ` Alexei Starovoitov
2024-09-13 3:55 Stephen Rothwell
2024-09-13 4:00 ` Al Viro
2024-09-13 4:26 ` Andrii Nakryiko
2024-09-13 4:43 ` Al Viro
2024-09-15 23:30 ` Stephen Rothwell
2024-09-13 3:32 Stephen Rothwell
2024-09-15 23:26 ` Stephen Rothwell
2024-08-14 1:25 Stephen Rothwell
2024-08-14 1:41 ` Al Viro
2024-08-14 2:37 ` Stephen Rothwell
2024-08-14 14:50 ` Christian Brauner
2024-08-30 1:32 ` Stephen Rothwell
2024-08-14 1:18 Stephen Rothwell
2024-06-17 18:15 Mark Brown
2024-06-22 8:17 ` kernel test robot
2024-06-22 8:28 ` kernel test robot
2024-06-25 1:22 ` Thinker Li
2024-06-25 15:54 ` Benjamin Tissoires
2024-06-25 16:03 ` Mark Brown
2024-06-25 17:14 ` Alexei Starovoitov
2024-06-27 7:14 ` Benjamin Tissoires
2024-07-09 23:13 ` Stephen Rothwell
2024-07-18 1:49 ` Stephen Rothwell
2024-07-18 7:42 ` Benjamin Tissoires
2023-03-19 23:26 Stephen Rothwell
2023-03-20 12:07 ` Alexander Lobakin
2023-03-21 22:35 ` Stephen Rothwell
2022-07-20 1:59 Stephen Rothwell
2022-07-20 3:42 ` Alexei Starovoitov
2022-07-20 3:44 ` Stanislav Fomichev
2022-04-19 1:56 Stephen Rothwell
2022-04-21 0:32 ` Stephen Rothwell
2022-04-21 9:45 ` Daniel Borkmann
2022-04-21 10:40 ` Maciej Fijalkowski
2022-02-09 0:21 Stephen Rothwell
[not found] <20190418115748.0b0aefdc@canb.auug.org.au>
2019-04-18 5:55 ` Magnus Karlsson
2019-04-18 6:18 ` Alexei Starovoitov
2019-04-18 6:25 ` Magnus Karlsson
2019-04-18 6:51 ` Alexei Starovoitov
2019-04-18 7:12 ` Magnus Karlsson
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=20240916092756.74401da1@canb.auug.org.au \
--to=sfr@canb.auug.org.au \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=brauner@kernel.org \
--cc=daniel@iogearbox.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-next@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=viro@zeniv.linux.org.uk \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox