Displaying 2 results from an estimated 2 matches for "sillyrename".
2003 Jun 11
1
nfs panic with umount -f
Hi Ian and others,
umount(8) -f does crash here on several just updated 4.8STABLE
boxes for nfs volumes. Server is an IRIX server. All clients are FreeBSD.
Here is a backtrace:
#0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487
#1 0xc021f1c0 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:316
#2 0xc021f60d in panic (fmt=0xc03bd664 "from debugger")
at
2010 Oct 25
2
[PATCH] Btrfs: allow subvol deletion by unprivileged user with -o user_subvol_rm_allowed
...ks pointing to it.
+ * 7. If we were asked to remove a directory and victim isn''t one - ENOTDIR.
+ * 8. If we were asked to remove a non-directory and victim isn''t one - EISDIR.
+ * 9. We can''t remove a root or mountpoint.
+ * 10. We don''t allow removal of NFS sillyrenamed files; it''s handled by
+ * nfs_async_unlink().
+ */
+
+static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
+{
+ int error;
+
+ if (!victim->d_inode)
+ return -ENOENT;
+
+ BUG_ON(victim->d_parent->d_inode != dir);
+ audit_inode_child(victim, dir);
+...