aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-05-31 13:36:08 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-05-31 13:36:52 -0700
commit6b8dddbd8ec0673c043efcb1f4d45bb49103146d (patch)
tree72e73251e55caaf8abbbc3da37b4a9f949ef1584 /include
parent7d09db0e46e72ac86123dc8012cf04a35e1c93e3 (diff)
Clarify that destroy() is called without kernel connection
Diffstat (limited to 'include')
-rw-r--r--include/fuse_lowlevel.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h
index 6daf021..8d93766 100644
--- a/include/fuse_lowlevel.h
+++ b/include/fuse_lowlevel.h
@@ -186,9 +186,11 @@ struct fuse_lowlevel_ops {
void (*init) (void *userdata, struct fuse_conn_info *conn);
/**
- * Clean up filesystem
+ * Clean up filesystem.
*
- * Called on filesystem exit
+ * Called on filesystem exit. When this method is called, the
+ * connection to the kernel may be gone already, so that eg. calls
+ * to fuse_lowlevel_notify_* will fail.
*
* There's no reply to this function
*