Commit 2fbc57c5 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Linus Torvalds
parent 35367ab2
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
#include <linux/elf.h> #include <linux/elf.h>
#include <linux/gfp.h> #include <linux/gfp.h>
#include <linux/migrate.h> #include <linux/migrate.h>
#include <linux/string.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/pgalloc.h> #include <asm/pgalloc.h>
...@@ -4118,15 +4119,12 @@ void print_vma_addr(char *prefix, unsigned long ip) ...@@ -4118,15 +4119,12 @@ void print_vma_addr(char *prefix, unsigned long ip)
struct file *f = vma->vm_file; struct file *f = vma->vm_file;
char *buf = (char *)__get_free_page(GFP_KERNEL); char *buf = (char *)__get_free_page(GFP_KERNEL);
if (buf) { if (buf) {
char *p, *s; char *p;
p = d_path(&f->f_path, buf, PAGE_SIZE); p = d_path(&f->f_path, buf, PAGE_SIZE);
if (IS_ERR(p)) if (IS_ERR(p))
p = "?"; p = "?";
s = strrchr(p, '/'); printk("%s%s[%lx+%lx]", prefix, kbasename(p),
if (s)
p = s+1;
printk("%s%s[%lx+%lx]", prefix, p,
vma->vm_start, vma->vm_start,
vma->vm_end - vma->vm_start); vma->vm_end - vma->vm_start);
free_page((unsigned long)buf); free_page((unsigned long)buf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment