linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] powerpc/kdump: Fix /dev/oldmem interface
@ 2008-07-31  6:54 Sachin P. Sant
  2008-07-31  7:12 ` Michael Ellerman
  0 siblings, 1 reply; 3+ messages in thread
From: Sachin P. Sant @ 2008-07-31  6:54 UTC (permalink / raw)
  To: benh; +Cc: linuxppc-dev, Vivek Goyal

[-- Attachment #1: Type: text/plain, Size: 432 bytes --]

This patch fixes the /dev/oldmem interface for kdump on ppc64.
The patch originally came from Michael Ellerman hence have
retained the signed-off line. I just rediffed/tested against
latest git. Michael has ack'ed this patch.

Ben this is not a must for 2.6.27 but would be good if it's 
included.

Thanks
-Sachin

Signed-off-by : Michael Ellerman <michael@ellerman.id.au>
Acked-by : Michael Ellerman <michael@ellerman.id.au>

---


[-- Attachment #2: fix-oldmem-interface-of-kdump.patch --]
[-- Type: text/x-patch, Size: 1839 bytes --]

Fix /dev/oldmem for kdump

A change to __ioremap() broke reading /dev/oldmem because we're no
longer able to ioremap pfn 0 (d177c207ba16b1db31283e2d1fee7ad4a863584b).

We actually don't need to ioremap for anything that's part of the linear
mapping, so just read it directly.

Also make sure we're only reading one page or less at a time.

Signed-off-by : Michael Ellerman <michael@ellerman.id.au>
---

diff -Naurp 1/arch/powerpc/kernel/crash_dump.c 2/arch/powerpc/kernel/crash_dump.c
--- 1/arch/powerpc/kernel/crash_dump.c	2008-07-31 11:55:39.000000000 +0530
+++ 2/arch/powerpc/kernel/crash_dump.c	2008-07-31 12:09:49.000000000 +0530
@@ -86,6 +86,19 @@ static int __init parse_savemaxmem(char 
 }
 __setup("savemaxmem=", parse_savemaxmem);
 
+
+static size_t copy_oldmem_vaddr(void *vaddr, char *buf, size_t csize,
+                               unsigned long offset, int userbuf)
+{
+	if (userbuf) {
+		if (copy_to_user((char __user *)buf, (vaddr + offset), csize))
+			return -EFAULT;
+	} else
+		memcpy(buf, (vaddr + offset), csize);
+
+	return csize;
+}
+
 /**
  * copy_oldmem_page - copy one page from "oldmem"
  * @pfn: page frame number to be copied
@@ -107,16 +120,16 @@ ssize_t copy_oldmem_page(unsigned long p
 	if (!csize)
 		return 0;
 
-	vaddr = __ioremap(pfn << PAGE_SHIFT, PAGE_SIZE, 0);
+	csize = min(csize, PAGE_SIZE);
 
-	if (userbuf) {
-		if (copy_to_user((char __user *)buf, (vaddr + offset), csize)) {
-			iounmap(vaddr);
-			return -EFAULT;
-		}
-	} else
-		memcpy(buf, (vaddr + offset), csize);
+	if (pfn < max_pfn) {
+		vaddr = __va(pfn << PAGE_SHIFT);
+		csize = copy_oldmem_vaddr(vaddr, buf, csize, offset, userbuf);
+	} else {
+		vaddr = __ioremap(pfn << PAGE_SHIFT, PAGE_SIZE, 0);
+		csize = copy_oldmem_vaddr(vaddr, buf, csize, offset, userbuf);
+		iounmap(vaddr);
+	}
 
-	iounmap(vaddr);
 	return csize;
 }

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] powerpc/kdump: Fix /dev/oldmem interface
  2008-07-31  6:54 [PATCH] powerpc/kdump: Fix /dev/oldmem interface Sachin P. Sant
@ 2008-07-31  7:12 ` Michael Ellerman
  2008-07-31  9:20   ` Sachin P. Sant
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Ellerman @ 2008-07-31  7:12 UTC (permalink / raw)
  To: Sachin P. Sant; +Cc: Vivek Goyal, linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 1017 bytes --]

On Thu, 2008-07-31 at 12:24 +0530, Sachin P. Sant wrote:
> This patch fixes the /dev/oldmem interface for kdump on ppc64.
> The patch originally came from Michael Ellerman hence have
> retained the signed-off line. I just rediffed/tested against
> latest git. Michael has ack'ed this patch.
> 
> Ben this is not a must for 2.6.27 but would be good if it's 
> included.

It's been broken long enough, I think it's a must for 27.


> Signed-off-by : Michael Ellerman <michael@ellerman.id.au>
> Acked-by : Michael Ellerman <michael@ellerman.id.au>

Heh, do I get a prize for being neurotic? ;)  .. Or just stupid, ahem.

I think you should also sign off on it Sachin, see clause (c) of the
developers cert (http://lwn.net/Articles/139918/)

cheers

-- 
Michael Ellerman
OzLabs, IBM Australia Development Lab

wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)

We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] powerpc/kdump: Fix /dev/oldmem interface
  2008-07-31  7:12 ` Michael Ellerman
@ 2008-07-31  9:20   ` Sachin P. Sant
  0 siblings, 0 replies; 3+ messages in thread
From: Sachin P. Sant @ 2008-07-31  9:20 UTC (permalink / raw)
  To: michael; +Cc: Vivek Goyal, linuxppc-dev

Michael Ellerman wrote:
> Heh, do I get a prize for being neurotic? ;)  .. Or just stupid, ahem.
>
> I think you should also sign off on it Sachin, see clause (c) of the
> developers cert (http://lwn.net/Articles/139918/)
>
>   
Here is a signed-off from me. Let me know if i need to resubmit
the patch with all signed-off-by lines.

Signed-off-by : Sachin Sant <sachinp@in.ibm.com>


-- 
Thanks
-Sachin

---------------------------------
Sachin Sant
IBM Linux Technology Center
India Systems and Technology Labs
Bangalore, India
---------------------------------

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-07-31  9:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-31  6:54 [PATCH] powerpc/kdump: Fix /dev/oldmem interface Sachin P. Sant
2008-07-31  7:12 ` Michael Ellerman
2008-07-31  9:20   ` Sachin P. Sant

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).