Staging: Pohmelfs: Reduce debugging noise about non-existing objects.
Signed-off-by: Evgeniy Polyakov <zbr@ioremap.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
cee9bb2ebd
commit
d1ec64409b
@@ -557,10 +557,10 @@ struct dentry *pohmelfs_lookup(struct inode *dir, struct dentry *dentry, struct
|
|||||||
|
|
||||||
if (ino) {
|
if (ino) {
|
||||||
inode = ilookup(dir->i_sb, ino);
|
inode = ilookup(dir->i_sb, ino);
|
||||||
printk("%s: second lookup ino: %lu, inode: %p, name: '%s', hash: %x.\n",
|
dprintk("%s: second lookup ino: %lu, inode: %p, name: '%s', hash: %x.\n",
|
||||||
__func__, ino, inode, str.name, str.hash);
|
__func__, ino, inode, str.name, str.hash);
|
||||||
if (!inode) {
|
if (!inode) {
|
||||||
printk("%s: No inode for ino: %lu, name: '%s', hash: %x.\n",
|
dprintk("%s: No inode for ino: %lu, name: '%s', hash: %x.\n",
|
||||||
__func__, ino, str.name, str.hash);
|
__func__, ino, str.name, str.hash);
|
||||||
//return NULL;
|
//return NULL;
|
||||||
return ERR_PTR(-EACCES);
|
return ERR_PTR(-EACCES);
|
||||||
|
Reference in New Issue
Block a user