mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
Merge tag 'zonefs-6.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs
Pull zonefs update from Damien Le Moal: - Use ZONEFS_SUPER_SIZE instead of PAGE_SIZE to read from disk the super block (Johannes). * tag 'zonefs-6.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs: zonefs: use ZONEFS_SUPER_SIZE instead of PAGE_SIZE
This commit is contained in:
@@ -1113,11 +1113,12 @@ static int zonefs_read_super(struct super_block *sb)
|
||||
u32 crc, stored_crc;
|
||||
int ret;
|
||||
|
||||
super = kmalloc(PAGE_SIZE, GFP_KERNEL);
|
||||
super = kmalloc(ZONEFS_SUPER_SIZE, GFP_KERNEL);
|
||||
if (!super)
|
||||
return -ENOMEM;
|
||||
|
||||
ret = bdev_rw_virt(sb->s_bdev, 0, super, PAGE_SIZE, REQ_OP_READ);
|
||||
ret = bdev_rw_virt(sb->s_bdev, 0, super, ZONEFS_SUPER_SIZE,
|
||||
REQ_OP_READ);
|
||||
if (ret)
|
||||
goto free_super;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user