1. 15 12月, 2011 1 次提交
  2. 14 12月, 2011 3 次提交
  3. 13 12月, 2011 2 次提交
  4. 12 10月, 2011 7 次提交
  5. 13 8月, 2011 1 次提交
    • C
      xfs: remove subdirectories · c59d87c4
      Christoph Hellwig 提交于
      Use the move from Linux 2.6 to Linux 3.x as an excuse to kill the
      annoying subdirectories in the XFS source code.  Besides the large
      amount of file rename the only changes are to the Makefile, a few
      files including headers with the subdirectory prefix, and the binary
      sysctl compat code that includes a header under fs/xfs/ from
      kernel/.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NAlex Elder <aelder@sgi.com>
      c59d87c4
  6. 26 7月, 2011 4 次提交
  7. 13 7月, 2011 1 次提交
  8. 08 7月, 2011 1 次提交
  9. 31 3月, 2011 1 次提交
  10. 07 3月, 2011 3 次提交
  11. 21 12月, 2010 1 次提交
  12. 19 10月, 2010 1 次提交
    • C
      xfs: stop using xfs_qm_dqtobp in xfs_qm_dqflush · acecf1b5
      Christoph Hellwig 提交于
      In xfs_qm_dqflush we know that q_blkno must be initialized already from a
      previous xfs_qm_dqread.  So instead of calling xfs_qm_dqtobp we can
      simply read the quota buffer directly.  This also saves us from a duplicate
      xfs_qm_dqcheck call check and allows xfs_qm_dqtobp to be simplified now
      that it is always called for a newly initialized inode.  In addition to
      that properly unwind all locks in xfs_qm_dqflush when xfs_qm_dqcheck
      fails.
      
      This mirrors a similar cleanup in the inode lookup done earlier.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NAlex Elder <aelder@sgi.com>
      acecf1b5
  13. 27 7月, 2010 5 次提交
  14. 24 5月, 2010 1 次提交
  15. 19 5月, 2010 5 次提交
  16. 04 2月, 2010 1 次提交
  17. 26 1月, 2010 1 次提交
  18. 22 1月, 2010 1 次提交
    • C
      xfs: cleanup up xfs_log_force calling conventions · a14a348b
      Christoph Hellwig 提交于
      Remove the XFS_LOG_FORCE argument which was always set, and the
      XFS_LOG_URGE define, which was never used.
      
      Split xfs_log_force into a two helpers - xfs_log_force which forces
      the whole log, and xfs_log_force_lsn which forces up to the
      specified LSN.  The underlying implementations already were entirely
      separate, as were the users.
      
      Also re-indent the new _xfs_log_force/_xfs_log_force which
      previously had a weird coding style.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NAlex Elder <aelder@sgi.com>
      a14a348b