1. 15 7月, 2005 12 次提交
  2. 14 7月, 2005 22 次提交
  3. 13 7月, 2005 6 次提交
    • I
      JFS: Need to be root to create files with security context · 59192ed9
      Ian Dall 提交于
      It turns out this is due to some inverted logic in xattr.c
      Signed-off-by: NDave Kleikamp <shaggy@austin.ibm.com>
      59192ed9
    • D
      JFS: Allow security.* xattrs to be set on symlinks · 6211502d
      Dave Kleikamp 提交于
      All of the different xattr namespaces have different rules.
      user.* and ACL's are not allowed on symlinks, and since these were the
      first xattrs implemented, I assumed there was no need to support xattrs
      on symlinks.  This one-line patch should fix it.
      Signed-off-by: NDave Kleikamp <shaggy@austin.ibm.com>
      6211502d
    • D
      Merge with /home/shaggy/git/linus-clean/ · f7f24758
      Dave Kleikamp 提交于
      Signed-off-by: NDave Kleikamp <shaggy@austin.ibm.com>
      f7f24758
    • T
      Merge with rsync://fileserver/linux · 1b3035b7
      Thomas Gleixner 提交于
      1b3035b7
    • L
      Linux 2.6.13-rc3 · c32511e2
      Linus Torvalds 提交于
      Yeah, this time hopefully I'm not confusing the version
      numbers. The last release was -rc2, _this_ is -rc3.
      c32511e2
    • R
      [PATCH] inotify · 0eeca283
      Robert Love 提交于
      inotify is intended to correct the deficiencies of dnotify, particularly
      its inability to scale and its terrible user interface:
      
              * dnotify requires the opening of one fd per each directory
                that you intend to watch. This quickly results in too many
                open files and pins removable media, preventing unmount.
              * dnotify is directory-based. You only learn about changes to
                directories. Sure, a change to a file in a directory affects
                the directory, but you are then forced to keep a cache of
                stat structures.
              * dnotify's interface to user-space is awful.  Signals?
      
      inotify provides a more usable, simple, powerful solution to file change
      notification:
      
              * inotify's interface is a system call that returns a fd, not SIGIO.
      	  You get a single fd, which is select()-able.
              * inotify has an event that says "the filesystem that the item
                you were watching is on was unmounted."
              * inotify can watch directories or files.
      
      Inotify is currently used by Beagle (a desktop search infrastructure),
      Gamin (a FAM replacement), and other projects.
      
      See Documentation/filesystems/inotify.txt.
      Signed-off-by: NRobert Love <rml@novell.com>
      Cc: John McCutchan <ttb@tentacle.dhs.org>
      Cc: Christoph Hellwig <hch@lst.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      0eeca283