The patch titled
power: Fix sizeof(PAGE_SIZE) typo
has been removed from the -mm tree. Its filename was
power-fix-sizeofpage_size-typo.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: power: Fix sizeof(PAGE_SIZE) typo
From: OGAWA Hirofumi <[EMAIL PROTECTED]>
Fix sizeof(PAGE_SIZE) typo. It should be just PAGE_SIZE for zeroing the
swsusp_header.
Signed-off-by: OGAWA Hirofumi <[EMAIL PROTECTED]>
Signed-off-by: OGAWA Hirofumi <[EMAIL PROTECTED]>
Cc: Pavel Machek <[EMAIL PROTECTED]>
Cc: "Rafael J. Wysocki" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
kernel/power/swap.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -puN kernel/power/swap.c~power-fix-sizeofpage_size-typo kernel/power/swap.c
--- a/kernel/power/swap.c~power-fix-sizeofpage_size-typo
+++ a/kernel/power/swap.c
@@ -584,7 +584,7 @@ int swsusp_check(void)
resume_bdev = open_by_devnum(swsusp_resume_device, FMODE_READ);
if (!IS_ERR(resume_bdev)) {
set_blocksize(resume_bdev, PAGE_SIZE);
- memset(swsusp_header, 0, sizeof(PAGE_SIZE));
+ memset(swsusp_header, 0, PAGE_SIZE);
error = bio_read_page(swsusp_resume_block,
swsusp_header, NULL);
if (error)
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
fat-gcc-43-warning-fix.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html