Loading kernel/power/swap.c +4 −6 Original line number Diff line number Diff line Loading @@ -343,12 +343,10 @@ static int swsusp_swap_check(void) return res; root_swap = res; hib_resume_bdev = bdget(swsusp_resume_device); if (!hib_resume_bdev) return -ENOMEM; res = blkdev_get(hib_resume_bdev, FMODE_WRITE, NULL); if (res) return res; hib_resume_bdev = blkdev_get_by_dev(swsusp_resume_device, FMODE_WRITE, NULL); if (IS_ERR(hib_resume_bdev)) return PTR_ERR(hib_resume_bdev); res = set_blocksize(hib_resume_bdev, PAGE_SIZE); if (res < 0) Loading Loading
kernel/power/swap.c +4 −6 Original line number Diff line number Diff line Loading @@ -343,12 +343,10 @@ static int swsusp_swap_check(void) return res; root_swap = res; hib_resume_bdev = bdget(swsusp_resume_device); if (!hib_resume_bdev) return -ENOMEM; res = blkdev_get(hib_resume_bdev, FMODE_WRITE, NULL); if (res) return res; hib_resume_bdev = blkdev_get_by_dev(swsusp_resume_device, FMODE_WRITE, NULL); if (IS_ERR(hib_resume_bdev)) return PTR_ERR(hib_resume_bdev); res = set_blocksize(hib_resume_bdev, PAGE_SIZE); if (res < 0) Loading