Re: [f2fs-dev] [PATCH] f2fs: fix null reference error when checking end of zone

2024-07-15 Thread patchwork-bot+f2fs
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Thu, 04 Jul 2024 10:01:21 +0900 you wrote: > This patch fixes a potentially null pointer being accessed by > is_end_zone_blkaddr() that checks the last block of a zone > when f2fs is mounted as a single device. > > Fixes

Re: [f2fs-dev] [PATCH] f2fs: fix null reference error when checking end of zone

2024-07-09 Thread Daeho Jeong
On Thu, Jul 4, 2024 at 12:17 AM Chao Yu wrote: > > On 2024/7/4 9:01, Daejun Park wrote: > > This patch fixes a potentially null pointer being accessed by > > is_end_zone_blkaddr() that checks the last block of a zone > > when f2fs is mounted as a single device. > > blkzoned feature depends on mult

Re: [f2fs-dev] [PATCH] f2fs: fix null reference error when checking end of zone

2024-07-04 Thread Chao Yu
On 2024/7/4 9:01, Daejun Park wrote: This patch fixes a potentially null pointer being accessed by is_end_zone_blkaddr() that checks the last block of a zone when f2fs is mounted as a single device. blkzoned feature depends on multiple device feature? One regular device and one seq-zone device?

Re: [f2fs-dev] [PATCH] f2fs: fix null reference error when checking end of zone

2024-07-03 Thread Markus Elfring via Linux-f2fs-devel
> This patch fixes a potentially null pointer being accessed by … Please improve such a change description with imperative wordings. https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.10-rc6#n94 How do you think about to use

[f2fs-dev] [PATCH] f2fs: fix null reference error when checking end of zone

2024-07-03 Thread Daejun Park
This patch fixes a potentially null pointer being accessed by is_end_zone_blkaddr() that checks the last block of a zone when f2fs is mounted as a single device. Fixes: e067dc3c6b9c ("f2fs: maintain six open zones for zoned devices") Signed-off-by: Daejun Park --- fs/f2fs/data.c | 4 +++- 1 file