1. 31 3月, 2014 7 次提交
  2. 13 11月, 2013 1 次提交
  3. 09 11月, 2013 2 次提交
  4. 25 10月, 2013 1 次提交
  5. 08 7月, 2013 1 次提交
  6. 05 7月, 2013 1 次提交
  7. 29 6月, 2013 12 次提交
  8. 23 2月, 2013 1 次提交
  9. 27 9月, 2012 1 次提交
  10. 21 8月, 2012 1 次提交
    • J
      vfs: don't treat fl_type as a bitmap · 0ee5c6d6
      Jeff Layton 提交于
      The rules for fl_type are rather convoluted. Typically it's treated as
      holding specific values, except in the case of LOCK_MAND, in which case
      it can be or'ed with LOCK_READ|LOCK_WRITE.
      
      On some arches F_WRLCK == 2 and F_UNLCK == 3, so and'ing with F_WRLCK will also
      catch the F_UNLCK case. It's unlikely in either case here that we'd ever see
      F_UNLCK since those shouldn't end up on any lists, but it's still best to be
      consistent.
      Signed-off-by: NJeff Layton <jlayton@redhat.com>
      Signed-off-by: NJ. Bruce Fields <bfields@redhat.com>
      0ee5c6d6
  11. 02 8月, 2012 1 次提交
  12. 28 7月, 2012 1 次提交
  13. 27 7月, 2012 1 次提交
  14. 24 7月, 2012 1 次提交
  15. 14 7月, 2012 1 次提交
  16. 30 5月, 2012 1 次提交
  17. 03 5月, 2012 1 次提交
  18. 02 4月, 2012 1 次提交
  19. 27 12月, 2011 1 次提交
    • L
      vfs: fix handling of lock allocation failure in lease-break case · 6d4b9e38
      Linus Torvalds 提交于
      Bruce Fields notes that commit 778fc546 ("locks: fix tracking of
      inprogress lease breaks") introduced a possible error pointer
      dereference on failure to allocate memory.  locks_conflict() will
      dereference the passed-in new lease lock structure that may be an error pointer.
      
      This means an open (without O_NONBLOCK set) on a file with a lease
      applied (generally only done when Samba or nfsd (with v4) is running)
      could crash if a kmalloc() fails.
      
      So instead of playing games with IS_ERROR() all over the place, just
      check the allocation failure early.  That makes the code more
      straightforward, and avoids this possible bad pointer dereference.
      Based-on-patch-by: NJ. Bruce Fields <bfields@redhat.com>
      Cc: Al Viro <viro@zeniv.linux.org.uk>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      6d4b9e38
  20. 28 9月, 2011 1 次提交
    • P
      doc: fix broken references · 395cf969
      Paul Bolle 提交于
      There are numerous broken references to Documentation files (in other
      Documentation files, in comments, etc.). These broken references are
      caused by typo's in the references, and by renames or removals of the
      Documentation files. Some broken references are simply odd.
      
      Fix these broken references, sometimes by dropping the irrelevant text
      they were part of.
      Signed-off-by: NPaul Bolle <pebolle@tiscali.nl>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      395cf969
  21. 21 9月, 2011 1 次提交
  22. 20 8月, 2011 1 次提交