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

Commit 2b322ce2 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds
Browse files

[PATCH] revert "swsusp: fix breakage with swap on lvm"



This was a temporary thing for 2.6.16.

Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Pavel Machek <pavel@ucw.cz>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent bdaff4a3
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -153,11 +153,13 @@ static int swsusp_swap_check(void) /* This is called before saving image */
{
	int i;

	if (!swsusp_resume_device)
		return -ENODEV;
	spin_lock(&swap_lock);
	for (i = 0; i < MAX_SWAPFILES; i++) {
		if (!(swap_info[i].flags & SWP_WRITEOK))
			continue;
		if (!swsusp_resume_device || is_resume_device(swap_info + i)) {
		if (is_resume_device(swap_info + i)) {
			spin_unlock(&swap_lock);
			root_swap = i;
			return 0;