Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68945e94 authored by Thomas Zeitlhofer's avatar Thomas Zeitlhofer Committed by Greg Kroah-Hartman
Browse files

PM: hibernate: use correct mode for swsusp_close()



[ Upstream commit cefcf24b4d351daf70ecd945324e200d3736821e ]

Commit 39fbef4b0f77 ("PM: hibernate: Get block device exclusively in
swsusp_check()") changed the opening mode of the block device to
(FMODE_READ | FMODE_EXCL).

In the corresponding calls to swsusp_close(), the mode is still just
FMODE_READ which triggers the warning in blkdev_flush_mapping() on
resume from hibernate.

So, use the mode (FMODE_READ | FMODE_EXCL) also when closing the
device.

Fixes: 39fbef4b0f77 ("PM: hibernate: Get block device exclusively in swsusp_check()")
Signed-off-by: default avatarThomas Zeitlhofer <thomas.zeitlhofer+lkml@ze-it.at>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 8ba43fd0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -677,7 +677,7 @@ static int load_image_and_restore(void)
		goto Unlock;

	error = swsusp_read(&flags);
	swsusp_close(FMODE_READ);
	swsusp_close(FMODE_READ | FMODE_EXCL);
	if (!error)
		hibernation_restore(flags & SF_PLATFORM_MODE);

@@ -874,7 +874,7 @@ static int software_resume(void)
	/* The snapshot device should not be opened while we're running */
	if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
		error = -EBUSY;
		swsusp_close(FMODE_READ);
		swsusp_close(FMODE_READ | FMODE_EXCL);
		goto Unlock;
	}

@@ -910,7 +910,7 @@ static int software_resume(void)
	pm_pr_dbg("Hibernation image not present or could not be loaded.\n");
	return error;
 Close_Finish:
	swsusp_close(FMODE_READ);
	swsusp_close(FMODE_READ | FMODE_EXCL);
	goto Finish;
}