Re: ext4: delete the invalid BUGON in ext4_mb_load_buddy_gfp()

2020-08-06 Thread Theodore Ts'o
On Mon, Jul 27, 2020 at 09:54:14AM +0800, brookxu wrote: > Delete the invalid BUGON in ext4_mb_load_buddy_gfp(), the previous > code has already judged whether page is NULL. > > Signed-off-by: Chunguang Xu Applied, but I had to manually apply your patch since it was mangled by your mailer. It

Re: ext4: delete the invalid BUGON in ext4_mb_load_buddy_gfp()

2020-07-26 Thread Ritesh Harjani
On 7/27/20 7:24 AM, brookxu wrote: Delete the invalid BUGON in ext4_mb_load_buddy_gfp(), the previous code has already judged whether page is NULL. Signed-off-by: Chunguang Xu Thanks for the patch. LGTM. Feel free to add. Reviewed-by: Ritesh Harjani ---  fs/ext4/mballoc.c | 3 ---  1

ext4: delete the invalid BUGON in ext4_mb_load_buddy_gfp()

2020-07-26 Thread brookxu
Delete the invalid BUGON in ext4_mb_load_buddy_gfp(), the previous code has already judged whether page is NULL. Signed-off-by: Chunguang Xu ---  fs/ext4/mballoc.c | 3 ---  1 file changed, 3 deletions(-) diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 28a139f..9b1c3ad 100644 ---