Explorar o código

[PATCH] kdump: export per cpu crash notes pointer through sysfs (fix)

Removes the call to get_cpu() and put_cpu() as it is not required.

Signed-off-by: Vivek Goyal <vgoyal@in.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Vivek Goyal %!s(int64=19) %!d(string=hai) anos
pai
achega
35ed319a36
Modificáronse 1 ficheiros con 0 adicións e 2 borrados
  1. 0 2
      drivers/base/cpu.c

+ 0 - 2
drivers/base/cpu.c

@@ -101,10 +101,8 @@ static ssize_t show_crash_notes(struct sys_device *dev, char *buf)
 	 * boot up and this data does not change there after. Hence this
 	 * boot up and this data does not change there after. Hence this
 	 * operation should be safe. No locking required.
 	 * operation should be safe. No locking required.
 	 */
 	 */
-	get_cpu();
 	addr = __pa(per_cpu_ptr(crash_notes, cpunum));
 	addr = __pa(per_cpu_ptr(crash_notes, cpunum));
 	rc = sprintf(buf, "%Lx\n", addr);
 	rc = sprintf(buf, "%Lx\n", addr);
-	put_cpu();
 	return rc;
 	return rc;
 }
 }
 static SYSDEV_ATTR(crash_notes, 0400, show_crash_notes, NULL);
 static SYSDEV_ATTR(crash_notes, 0400, show_crash_notes, NULL);