From: Al Viro <viro@zeniv.linux.org.uk>
To: Kent Overstreet <kent.overstreet@linux.dev>
Cc: linux-bcachefs@vger.kernel.org
Subject: Re: [PATCH] bcachefs: fix build on sh4
Date: Sat, 9 Aug 2025 04:37:33 +0100 [thread overview]
Message-ID: <20250809033733.GI222315@ZenIV> (raw)
In-Reply-To: <20250809031944.1579293-1-kent.overstreet@linux.dev>
On Fri, Aug 08, 2025 at 11:19:44PM -0400, Kent Overstreet wrote:
> put_user() with a 64 bit value causes an ICE on sh4.
>
> Reported-by: Alexander Viro <viro@zeniv.linux.org.uk>
> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
> ---
> fs/bcachefs/sb-counters.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/bcachefs/sb-counters.c b/fs/bcachefs/sb-counters.c
> index 2b4b8445d418..9fa2c568c985 100644
> --- a/fs/bcachefs/sb-counters.c
> +++ b/fs/bcachefs/sb-counters.c
> @@ -136,7 +136,7 @@ long bch2_ioctl_query_counters(struct bch_fs *c,
> ? percpu_u64_get(&c->counters[i])
> : c->counters_on_mount[i];
>
> - ret = put_user(v, &user_arg->d[stable]);
> + ret = copy_to_user_errcode(&user_arg->d[stable], &v, sizeof(v));
> if (ret)
> return ret;
> }
If anything, that's the wrong place - put_user() on 64bit *is* allowed, whatever
the architecture. See __put_user_u64() in arch/sh/include/asm/uaccess_32.h;
it is supposed to work (and it certainly isn't supposed to trigger an ICE,
so ultimately it's a gcc bug).
prev parent reply other threads:[~2025-08-09 3:37 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-09 3:19 [PATCH] bcachefs: fix build on sh4 Kent Overstreet
2025-08-09 3:37 ` Al Viro [this message]
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=20250809033733.GI222315@ZenIV \
--to=viro@zeniv.linux.org.uk \
--cc=kent.overstreet@linux.dev \
--cc=linux-bcachefs@vger.kernel.org \
/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.