1. 12 Feb, 2007 1 commit
    • Nick Piggin's avatar
      [PATCH] inotify: read return val fix · f9e4acf3
      Nick Piggin authored
      
      Fix for inotify read bug (bugzilla.kernel.org #6999)
      
      Problem Description:
      When reading from an inotify device with an insufficient sized buffer, read(2)
      will return 0 with no errno set. This is because of an logically incorrect
      action from the user program thus should return an more logical value. My
      suggestion is return -EINVAL as for bind(2).
      
      This patch is based on the proposal from Ryan <wolf0403@hotmail.com>, and
      feedback from John McCutchan <john@johnmccutchan.com>.
      
      Return -EINVAL if we have not passed in enough buffer space to read a single
      inotify event, rather than 0 which indicates that there is nothing to read.
      Signed-off-by: default avatarNick Piggin <npiggin@suse.de>
      Acked-by: default avatar"John McCutchan" <john@johnmccutchan.com>
      Cc: Ryan <wolf0403@hotmail.com>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      f9e4acf3
  2. 08 Dec, 2006 1 commit
  3. 07 Dec, 2006 1 commit
  4. 31 Jul, 2006 1 commit
    • Arjan van de Ven's avatar
      [PATCH] inotify: fix deadlock found by lockdep · 5b6509aa
      Arjan van de Ven authored
      
      This is a real deadlock, a nice complex one:
      (warning: long explanation follows so that Andrew can have a complete
      patch description)
      
      it's an ABCDA deadlock:
      
      A iprune_mutex
      B inode->inotify_mutex
      C ih->mutex
      D dev->ev_mutex
      
      The AB relationship comes straight from invalidate_inodes()
      
      int invalidate_inodes(struct super_block * sb)
      {
              int busy;
              LIST_HEAD(throw_away);
      
              mutex_lock(&iprune_mutex);
              spin_lock(&inode_lock);
              inotify_unmount_inodes(&sb->s_inodes);
      
      where inotify_umount_inodes() takes the
                      mutex_lock(&inode->inotify_mutex);
      
      The BC relationship comes directly from inotify_find_update_watch():
      s32 inotify_find_update_watch(struct inotify_handle *ih, struct inode *inode,
                                    u32 mask)
      {
         ...
              mutex_lock(&inode->inotify_mutex);
              mutex_lock(&ih->mutex);
      
      The CD relationship comes from inotify_rm_wd:
      inotify_rm_wd does
              mutex_lock(&inode->inotify_mutex);
              mutex_lock(&ih->mutex)
      and then calls inotify_remove_watch_locked() which calls
      notify_dev_queue_event() which does
      	        mutex_lock(&dev->ev_mutex);
      
      (this strictly is a BCD relationship)
      
      The DA relationship comes from the most interesting part:
      
        [<ffffffff8022d9f2>] shrink_icache_memory+0x42/0x270
        [<ffffffff80240dc4>] shrink_slab+0x11d/0x1c9
        [<ffffffff802b5104>] try_to_free_pages+0x187/0x244
        [<ffffffff8020efed>] __alloc_pages+0x1cd/0x2e0
        [<ffffffff8025e1f8>] cache_alloc_refill+0x3f8/0x821
        [<ffffffff8020a5e5>] kmem_cache_alloc+0x85/0xcb
        [<ffffffff802db027>] kernel_event+0x2e/0x122
        [<ffffffff8021d61c>] inotify_dev_queue_event+0xcc/0x140
      
      inotify_dev_queue_event schedules a kernel_event which does a
      kmem_cache_alloc( , GFP_KERNEL) which may try to shrink slabs, including
      the inode cache .. which then takes iprune_mutex.
      
      And voila, there is an AB, a BC, a CD relationship (even a direct BCD),
      and also now a DA relationship -> a circular type AB-BA deadlock but
      involving 4 locks.
      
      The solution is simple: kernel_event() is NOT allowed to use GFP_KERNEL,
      but must use GFP_NOFS to not cause recursion into the VFS.
      Signed-off-by: default avatarArjan van de Ven <arjan@linux.intel.com>
      Acked-by: default avatarIngo Molnar <mingo@elte.hu>
      Acked-by: default avatarRobert Love <rml@novell.com>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      5b6509aa
  5. 23 Jun, 2006 1 commit
    • David Howells's avatar
      [PATCH] VFS: Permit filesystem to override root dentry on mount · 454e2398
      David Howells authored
      Extend the get_sb() filesystem operation to take an extra argument that
      permits the VFS to pass in the target vfsmount that defines the mountpoint.
      
      The filesystem is then required to manually set the superblock and root dentry
      pointers.  For most filesystems, this should be done with simple_set_mnt()
      which will set the superblock pointer and then set the root dentry to the
      superblock's s_root (as per the old default behaviour).
      
      The get_sb() op now returns an integer as there's now no need to return the
      superblock pointer.
      
      This patch permits a superblock to be implicitly shared amongst several mount
      points, such as can be done with NFS to avoid potential inode aliasing.  In
      such a case, simple_set_mnt() would not be called, and instead the mnt_root
      and mnt_sb would be set directly.
      
      The patch also makes the following changes:
      
       (*) the get_sb_*() convenience functions in the core kernel now take a vfsmount
           pointer argument and return a...
      454e2398
  6. 20 Jun, 2006 3 commits