Commit d6756841 authored by Al Viro's avatar Al Viro
Browse files

orangefs_file_mmap(): use %pD



... and no, file can't be NULL there - it's not called that way *and*
it would've oopsed a few lines prior on such call anyway.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent b9e4666f
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -487,10 +487,7 @@ static int orangefs_file_mmap(struct file *file, struct vm_area_struct *vma)
		return ret;

	gossip_debug(GOSSIP_FILE_DEBUG,
		     "orangefs_file_mmap: called on %s\n",
		     (file ?
			(char *)file->f_path.dentry->d_name.name :
			(char *)"Unknown"));
		     "orangefs_file_mmap: called on %pD\n", file);

	/* set the sequential readahead hint */
	vma->vm_flags |= VM_SEQ_READ;