[][src]Function libfuse_sys::fuse_lowlevel::fuse_lowlevel_notify_inval_entry

pub unsafe extern "C" fn fuse_lowlevel_notify_inval_entry(
    ch: *mut fuse_chan,
    parent: fuse_ino_t,
    name: *const c_char,
    namelen: usize
) -> c_int

Notify to invalidate parent attributes and the dentry matching parent/name

To avoid a deadlock don't call this function from a filesystem operation and don't call it with a lock held that can also be held by a filesystem operation.

@param ch the channel through which to send the invalidation @param parent inode number @param name file name @param namelen strlen() of file name @return zero for success, -errno for failure