diff --git a/[refs] b/[refs] index b64fdfcf2498..f90a75f932ca 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 35367ab28d024ef026dbd797b4076c8f008ec08c +refs/heads/master: 2fbc57c53a815ea30b926dd7627897a02daae302 diff --git a/trunk/mm/memory.c b/trunk/mm/memory.c index 23f1fdfdfcf1..e0a9b0ce4f10 100644 --- a/trunk/mm/memory.c +++ b/trunk/mm/memory.c @@ -58,6 +58,7 @@ #include #include #include +#include #include #include @@ -4118,15 +4119,12 @@ void print_vma_addr(char *prefix, unsigned long ip) struct file *f = vma->vm_file; char *buf = (char *)__get_free_page(GFP_KERNEL); if (buf) { - char *p, *s; + char *p; p = d_path(&f->f_path, buf, PAGE_SIZE); if (IS_ERR(p)) p = "?"; - s = strrchr(p, '/'); - if (s) - p = s+1; - printk("%s%s[%lx+%lx]", prefix, p, + printk("%s%s[%lx+%lx]", prefix, kbasename(p), vma->vm_start, vma->vm_end - vma->vm_start); free_page((unsigned long)buf);