1. 27 10月, 2017 12 次提交
  2. 20 6月, 2017 1 次提交
    • D
      xfs: remove double-underscore integer types · c8ce540d
      Darrick J. Wong 提交于
      This is a purely mechanical patch that removes the private
      __{u,}int{8,16,32,64}_t typedefs in favor of using the system
      {u,}int{8,16,32,64}_t typedefs.  This is the sed script used to perform
      the transformation and fix the resulting whitespace and indentation
      errors:
      
      s/typedef\t__uint8_t/typedef __uint8_t\t/g
      s/typedef\t__uint/typedef __uint/g
      s/typedef\t__int\([0-9]*\)_t/typedef int\1_t\t/g
      s/__uint8_t\t/__uint8_t\t\t/g
      s/__uint/uint/g
      s/__int\([0-9]*\)_t\t/__int\1_t\t\t/g
      s/__int/int/g
      /^typedef.*int[0-9]*_t;$/d
      Signed-off-by: NDarrick J. Wong <darrick.wong@oracle.com>
      Reviewed-by: NChristoph Hellwig <hch@lst.de>
      c8ce540d
  3. 19 6月, 2017 1 次提交
  4. 04 4月, 2017 1 次提交
  5. 06 10月, 2016 2 次提交
  6. 05 10月, 2016 1 次提交
  7. 03 8月, 2016 1 次提交
  8. 01 6月, 2016 1 次提交
  9. 04 1月, 2016 2 次提交
  10. 12 10月, 2015 1 次提交
  11. 29 5月, 2015 1 次提交
  12. 09 1月, 2015 1 次提交
  13. 30 7月, 2014 1 次提交
  14. 24 7月, 2014 1 次提交
    • B
      xfs: support a union-based filter for eofblocks scans · f4526397
      Brian Foster 提交于
      From: Brian Foster <bfoster@redhat.com>
      
      The eofblocks scan inode filter uses intersection logic by default.
      E.g., specifying both user and group quota ids filters out inodes that
      are not covered by both the specified user and group quotas. This is
      suitable for behavior exposed to userspace.
      
      Scans that are initiated from within the kernel might require more broad
      semantics, such as scanning all inodes under each quota associated with
      an inode to alleviate low free space conditions in each.
      
      Create the XFS_EOF_FLAGS_UNION flag to support a conditional union-based
      filtering algorithm for eofblocks scans. This flag is intentionally left
      out of the valid mask as it is not supported for scans initiated from
      userspace.
      Signed-off-by: NBrian Foster <bfoster@redhat.com>
      Reviewed-by: NDave Chinner <dchinner@redhat.com>
      Signed-off-by: NDave Chinner <david@fromorbit.com>
      f4526397
  15. 24 4月, 2014 1 次提交
  16. 09 10月, 2013 1 次提交
  17. 25 9月, 2013 1 次提交
  18. 16 8月, 2013 1 次提交
  19. 13 8月, 2013 3 次提交
  20. 31 5月, 2013 2 次提交
  21. 09 11月, 2012 3 次提交
  22. 08 11月, 2012 1 次提交