Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1ec6440 authored by Evgeniy Polyakov's avatar Evgeniy Polyakov Committed by Greg Kroah-Hartman
Browse files

Staging: Pohmelfs: Reduce debugging noise about non-existing objects.

parent cee9bb2e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -557,10 +557,10 @@ struct dentry *pohmelfs_lookup(struct inode *dir, struct dentry *dentry, struct

	if (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);
		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);
			//return NULL;
			return ERR_PTR(-EACCES);