cerr << "DEBUG: lookup(): inode " << e->attr.st_ino
<< " (userspace) already known; fd = " << inode.fd << endl;
lock_guard<mutex> g {inode.m};
+
inode.nlookup++;
+ if (fs.debug)
+ cerr << "DEBUG:" << __func__ << ":" << __LINE__ << " "
+ << "inode " << inode.src_ino
+ << " count " << inode.nlookup << endl;
+
+
close(newfd);
} else { // no existing inode
/* This is just here to make Helgrind happy. It violates the
lock_guard<mutex> g {inode.m};
inode.src_ino = e->attr.st_ino;
inode.src_dev = e->attr.st_dev;
+
inode.nlookup++;
+ if (fs.debug)
+ cerr << "DEBUG:" << __func__ << ":" << __LINE__ << " "
+ << "inode " << inode.src_ino
+ << " count " << inode.nlookup << endl;
+
inode.fd = newfd;
fs_lock.unlock();
{
lock_guard<mutex> g {inode.m};
inode.nlookup++;
+ if (fs.debug)
+ cerr << "DEBUG:" << __func__ << ":" << __LINE__ << " "
+ << "inode " << inode.src_ino
+ << " count " << inode.nlookup << endl;
}
fuse_reply_entry(req, &e);
inode.generation++;
}
}
+
+ // decrease the ref which lookup above had increased
+ forget_one(e.ino, 1);
}
auto res = unlinkat(inode_p.fd, name, 0);
fuse_reply_err(req, res == -1 ? errno : 0);
abort();
}
inode.nlookup -= n;
+
+ if (fs.debug)
+ cerr << "DEBUG:" << __func__ << ":" << __LINE__ << " "
+ << "inode " << inode.src_ino
+ << " count " << inode.nlookup << endl;
+
if (!inode.nlookup) {
if (fs.debug)
cerr << "DEBUG: forget: cleaning up inode " << inode.src_ino << endl;