]> git.baikalelectronics.ru Git - kernel.git/commit
PM: hibernate: Fix snapshot partial write lengths
authorEvan Green <evgreen@chromium.org>
Fri, 29 Oct 2021 19:24:22 +0000 (12:24 -0700)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 24 Nov 2021 12:50:18 +0000 (13:50 +0100)
commit2b5df8fd8909ce8480c4bd53aa307943dcaa6841
treee78632648e4ddf27ff86e44116cf764ad9b400ed
parent4eb731035da67c81f13ec73e1a30d04893ca742b
PM: hibernate: Fix snapshot partial write lengths

snapshot_write() is inappropriately limiting the amount of data that can
be written in cases where a partial page has already been written. For
example, one would expect to be able to write 1 byte, then 4095 bytes to
the snapshot device, and have both of those complete fully (since now
we're aligned to a page again). But what ends up happening is we write 1
byte, then 4094/4095 bytes complete successfully.

The reason is that simple_write_to_buffer()'s second argument is the
total size of the buffer, not the size of the buffer minus the offset.
Since simple_write_to_buffer() accounts for the offset in its
implementation, snapshot_write() can just pass the full page size
directly down.

Signed-off-by: Evan Green <evgreen@chromium.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
kernel/power/user.c