I think this is the reason for a sporadic test failure, where
fuse_lowlevel_notify_store() fails.
static void tfs_forget (fuse_req_t req, fuse_ino_t ino,
uint64_t nlookup) {
(void) req;
- assert(ino == file_ino || ino == FUSE_ROOT_ID);
- lookup_cnt -= nlookup;
+ if(ino == file_ino)
+ lookup_cnt -= nlookup;
+ else
+ assert(ino == FUSE_ROOT_ID);
fuse_reply_none(req);
}
-
static void tfs_getattr(fuse_req_t req, fuse_ino_t ino,
struct fuse_file_info *fi) {
struct stat stbuf;
static void tfs_forget (fuse_req_t req, fuse_ino_t ino,
uint64_t nlookup) {
(void) req;
- assert(ino == FILE_INO || ino == FUSE_ROOT_ID);
- lookup_cnt -= nlookup;
+ if(ino == FILE_INO)
+ lookup_cnt -= nlookup;
+ else
+ assert(ino == FUSE_ROOT_ID);
fuse_reply_none(req);
}
static void tfs_forget (fuse_req_t req, fuse_ino_t ino,
uint64_t nlookup) {
(void) req;
- assert(ino == FILE_INO || ino == FUSE_ROOT_ID);
- lookup_cnt -= nlookup;
+ if(ino == FILE_INO)
+ lookup_cnt -= nlookup;
+ else
+ assert(ino == FUSE_ROOT_ID);
fuse_reply_none(req);
}