aboutsummaryrefslogtreecommitdiffstats
path: root/fs/binfmt_aout.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2014-10-21 20:11:25 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2014-11-19 13:01:20 -0500
commita455589f181e60439c736c6c6a068bb7e6dc23f0 (patch)
tree48d377e7db8d21fd606ba8c84a72b95f3d23c10b /fs/binfmt_aout.c
parent41d28bca2da4bd75a8915c1ccf2cacf7f4a2e531 (diff)
assorted conversions to %p[dD]
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/binfmt_aout.c')
-rw-r--r--fs/binfmt_aout.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/binfmt_aout.c b/fs/binfmt_aout.c
index 929dec08c348..4c556680fa74 100644
--- a/fs/binfmt_aout.c
+++ b/fs/binfmt_aout.c
@@ -292,8 +292,8 @@ static int load_aout_binary(struct linux_binprm * bprm)
292 if ((fd_offset & ~PAGE_MASK) != 0 && printk_ratelimit()) 292 if ((fd_offset & ~PAGE_MASK) != 0 && printk_ratelimit())
293 { 293 {
294 printk(KERN_WARNING 294 printk(KERN_WARNING
295 "fd_offset is not page aligned. Please convert program: %s\n", 295 "fd_offset is not page aligned. Please convert program: %pD\n",
296 bprm->file->f_path.dentry->d_name.name); 296 bprm->file);
297 } 297 }
298 298
299 if (!bprm->file->f_op->mmap||((fd_offset & ~PAGE_MASK) != 0)) { 299 if (!bprm->file->f_op->mmap||((fd_offset & ~PAGE_MASK) != 0)) {
@@ -375,8 +375,8 @@ static int load_aout_library(struct file *file)
375 if (printk_ratelimit()) 375 if (printk_ratelimit())
376 { 376 {
377 printk(KERN_WARNING 377 printk(KERN_WARNING
378 "N_TXTOFF is not page aligned. Please convert library: %s\n", 378 "N_TXTOFF is not page aligned. Please convert library: %pD\n",
379 file->f_path.dentry->d_name.name); 379 file);
380 } 380 }
381 vm_brk(start_addr, ex.a_text + ex.a_data + ex.a_bss); 381 vm_brk(start_addr, ex.a_text + ex.a_data + ex.a_bss);
382 382