From: patchwork-bot+f2fs--- via Linux-f2fs-devel <linux-f2fs-devel@lists.sourceforge.net>
To: Chao Yu <chao@kernel.org>
Cc: jaegeuk@kernel.org, linux-kernel@vger.kernel.org,
linux-f2fs-devel@lists.sourceforge.net
Subject: Re: [f2fs-dev] [PATCH 1/4] f2fs: fix to do cast in F2FS_{BLK_TO_BYTES, BTYES_TO_BLK} to avoid overflow
Date: Thu, 21 Nov 2024 16:20:31 +0000 [thread overview]
Message-ID: <173220603104.1977996.13915931436818539295.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20241108012557.572782-1-chao@kernel.org>
Hello:
This series was applied to jaegeuk/f2fs.git (dev)
by Jaegeuk Kim <jaegeuk@kernel.org>:
On Fri, 8 Nov 2024 09:25:54 +0800 you wrote:
> It missed to cast variable to unsigned long long type before
> bit shift, which will cause overflow, fix it.
>
> Fixes: f7ef9b83b583 ("f2fs: introduce macros to convert bytes and blocks in f2fs")
> Signed-off-by: Chao Yu <chao@kernel.org>
> ---
> include/linux/f2fs_fs.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
Here is the summary with links:
- [f2fs-dev,1/4] f2fs: fix to do cast in F2FS_{BLK_TO_BYTES, BTYES_TO_BLK} to avoid overflow
(no matching commit)
- [f2fs-dev,2/4] f2fs: clean up w/ F2FS_{BLK_TO_BYTES, BTYES_TO_BLK}
https://git.kernel.org/jaegeuk/f2fs/c/7461f3709418
- [f2fs-dev,3/4] f2fs: fix to adjust appropriate length for fiemap
https://git.kernel.org/jaegeuk/f2fs/c/77569f785c86
- [f2fs-dev,4/4] f2fs: fix to requery extent which cross boundary of inquiry
https://git.kernel.org/jaegeuk/f2fs/c/6787a8224585
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
WARNING: multiple messages have this Message-ID (diff)
From: patchwork-bot+f2fs@kernel.org
To: Chao Yu <chao@kernel.org>
Cc: jaegeuk@kernel.org, linux-kernel@vger.kernel.org,
linux-f2fs-devel@lists.sourceforge.net
Subject: Re: [f2fs-dev] [PATCH 1/4] f2fs: fix to do cast in F2FS_{BLK_TO_BYTES, BTYES_TO_BLK} to avoid overflow
Date: Thu, 21 Nov 2024 16:20:31 +0000 [thread overview]
Message-ID: <173220603104.1977996.13915931436818539295.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20241108012557.572782-1-chao@kernel.org>
Hello:
This series was applied to jaegeuk/f2fs.git (dev)
by Jaegeuk Kim <jaegeuk@kernel.org>:
On Fri, 8 Nov 2024 09:25:54 +0800 you wrote:
> It missed to cast variable to unsigned long long type before
> bit shift, which will cause overflow, fix it.
>
> Fixes: f7ef9b83b583 ("f2fs: introduce macros to convert bytes and blocks in f2fs")
> Signed-off-by: Chao Yu <chao@kernel.org>
> ---
> include/linux/f2fs_fs.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
Here is the summary with links:
- [f2fs-dev,1/4] f2fs: fix to do cast in F2FS_{BLK_TO_BYTES, BTYES_TO_BLK} to avoid overflow
(no matching commit)
- [f2fs-dev,2/4] f2fs: clean up w/ F2FS_{BLK_TO_BYTES, BTYES_TO_BLK}
https://git.kernel.org/jaegeuk/f2fs/c/7461f3709418
- [f2fs-dev,3/4] f2fs: fix to adjust appropriate length for fiemap
https://git.kernel.org/jaegeuk/f2fs/c/77569f785c86
- [f2fs-dev,4/4] f2fs: fix to requery extent which cross boundary of inquiry
https://git.kernel.org/jaegeuk/f2fs/c/6787a8224585
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
next prev parent reply other threads:[~2024-11-21 16:20 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-08 1:25 [f2fs-dev] [PATCH 1/4] f2fs: fix to do cast in F2FS_{BLK_TO_BYTES, BTYES_TO_BLK} to avoid overflow Chao Yu via Linux-f2fs-devel
2024-11-08 1:25 ` Chao Yu
2024-11-08 1:25 ` [f2fs-dev] [PATCH 2/4] f2fs: clean up w/ F2FS_{BLK_TO_BYTES, BTYES_TO_BLK} Chao Yu via Linux-f2fs-devel
2024-11-08 1:25 ` [PATCH 2/4] f2fs: clean up w/ F2FS_{BLK_TO_BYTES,BTYES_TO_BLK} Chao Yu
2024-11-08 1:25 ` [f2fs-dev] [PATCH 3/4] f2fs: fix to adjust appropriate length for fiemap Chao Yu via Linux-f2fs-devel
2024-11-08 1:25 ` Chao Yu
2024-11-08 1:25 ` [f2fs-dev] [PATCH 4/4] f2fs: fix to requery extent which cross boundary of inquiry Chao Yu via Linux-f2fs-devel
2024-11-08 1:25 ` Chao Yu
2024-11-18 18:07 ` [f2fs-dev] [PATCH 1/4] f2fs: fix to do cast in F2FS_{BLK_TO_BYTES, BTYES_TO_BLK} to avoid overflow Jaegeuk Kim via Linux-f2fs-devel
2024-11-18 18:07 ` Jaegeuk Kim
2024-11-19 1:11 ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2024-11-19 1:11 ` Chao Yu
2024-11-21 16:20 ` patchwork-bot+f2fs--- via Linux-f2fs-devel [this message]
2024-11-21 16:20 ` [f2fs-dev] " patchwork-bot+f2fs
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=173220603104.1977996.13915931436818539295.git-patchwork-notify@kernel.org \
--to=linux-f2fs-devel@lists.sourceforge.net \
--cc=chao@kernel.org \
--cc=jaegeuk@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=patchwork-bot+f2fs@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.