From: Ian Kent <raven@themaw.net>
Date: Tue, 18 Jan 2011 04:06:15 +0000 (+0800)
Subject: autofs4 - fix debug print in autofs4_lookup()
X-Git-Tag: v2.6.38-rc1~11^2~8
X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c0bcc9d55252012805300ca01b9b7a143b4daf85;p=users%2Fwilly%2Fxarray.git

autofs4 - fix debug print in autofs4_lookup()

oz_mode isn't defined any more, use autofs4_oz_mode(sbi) instead.

Signed-off-by: Ian Kent <raven@themaw.net>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---

diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c
index 1dba035fc376..427129ab5292 100644
--- a/fs/autofs4/root.c
+++ b/fs/autofs4/root.c
@@ -488,7 +488,8 @@ static struct dentry *autofs4_lookup(struct inode *dir, struct dentry *dentry, s
 	sbi = autofs4_sbi(dir->i_sb);
 
 	DPRINTK("pid = %u, pgrp = %u, catatonic = %d, oz_mode = %d",
-		current->pid, task_pgrp_nr(current), sbi->catatonic, oz_mode);
+		current->pid, task_pgrp_nr(current), sbi->catatonic,
+		autofs4_oz_mode(sbi));
 
 	active = autofs4_lookup_active(dentry);
 	if (active) {