1. 12 7月, 2008 1 次提交
  2. 02 5月, 2008 3 次提交
  3. 01 5月, 2008 2 次提交
  4. 30 4月, 2008 1 次提交
  5. 23 4月, 2008 9 次提交
  6. 22 4月, 2008 6 次提交
  7. 19 4月, 2008 1 次提交
  8. 15 4月, 2008 1 次提交
  9. 25 2月, 2008 2 次提交
  10. 08 2月, 2008 2 次提交
  11. 03 2月, 2008 1 次提交
  12. 08 1月, 2008 1 次提交
  13. 04 12月, 2007 1 次提交
  14. 28 11月, 2007 1 次提交
  15. 22 11月, 2007 1 次提交
  16. 06 11月, 2007 2 次提交
  17. 02 11月, 2007 2 次提交
    • D
      [JFFS2] Don't strip sgid bit from inode permissions · 857013b8
      David Woodhouse 提交于
      <viro> dwmw2: anyway, removing sgid from directories or from
             files without S_IXGRP is a plain and simple bug
      <viro> these days you don't need that logics at all - simply remove it
      Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
      857013b8
    • D
      [JFFS2] Improve getdents vs. f_pos handling on NOR flash. · 15953580
      David Woodhouse 提交于
      Commit a491486a started obliterating
      dirents directly on the medium, when jffs2_can_mark_obsolete(). Removing
      them immediately from the f->dents list, however, screws up handling of
      f_pos within a directory -- because the offset is equivalent to the
      number of entries through the list we are, and the existence of
      deletion dirents served to provide 'placeholders' for unlinked
      entries. Now, 'rm -r' doesn't even manage to unlink everything in the
      directory.
      
      Revert to keeping 'deletion' dirents in the list, at least in memory
      even though we no longer write anything to the medium.
      
      Spotted, debugged and mostly fixed by Joakim Tjernlund
      Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
      15953580
  18. 27 10月, 2007 1 次提交
  19. 22 10月, 2007 1 次提交
  20. 20 10月, 2007 1 次提交
    • K
      [JFFS2] Tidy up fix for ACL/permissions problem. · cfc8dc6f
      KaiGai Kohei 提交于
      [In commit 9ed437c5 we fixed a problem 
      with standard permissions on newly-created inodes, when POSIX ACLs are 
      enabled. This cleans it up...]
      
      The attached patch separate jffs2_init_acl() into two parts.
      
      The one is jffs2_init_acl_pre() called from jffs2_new_inode().
      It compute ACL oriented inode->i_mode bits, and allocate in-memory ACL
      objects associated with the new inode just before when inode meta
      infomation is written to the medium.
      
      The other is jffs2_init_acl_post() called from jffs2_symlink(),
      jffs2_mkdir(), jffs2_mknod() and jffs2_do_create().
      It actually writes in-memory ACL objects into the medium next to
      the success of writing meta-information.
      
      In the current implementation, we have to write a same inode meta
      infomation twice when inode->i_mode is updated by the default ACL.
      However, we can avoid the behavior by putting an updated i_mode
      before it is written at first, as jffs2_init_acl_pre() doing.
      Signed-off-by: NKaiGai Kohei <kaigai@ak.jp.nec.com>
      Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
      cfc8dc6f