diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-09 16:06:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-09 16:06:20 -0400 |
commit | 8769e078a9a2bce13d39c08e0e5a513f5320e1de (patch) | |
tree | 4f63f3e0179a5b0a17f961f86e775393c8cf1732 /fs/xfs/xfs_trans.h | |
parent | 8cbc95ee748741939222c3d38584a40c92bedcdd (diff) | |
parent | 7dfbcbefad4b24d9822d04dbd7b5dd5c3fd45076 (diff) |
Merge tag 'for-linus-v3.10-rc1-2' of git://oss.sgi.com/xfs/xfs
Pull xfs update (#2) from Ben Myers:
- add CONFIG_XFS_WARN, a step between zero debugging and
CONFIG_XFS_DEBUG.
- fix attrmulti and attrlist to fall back to vmalloc when kmalloc
fails.
* tag 'for-linus-v3.10-rc1-2' of git://oss.sgi.com/xfs/xfs:
xfs: fallback to vmalloc for large buffers in xfs_compat_attrlist_by_handle
xfs: fallback to vmalloc for large buffers in xfs_attrlist_by_handle
xfs: introduce CONFIG_XFS_WARN
Diffstat (limited to 'fs/xfs/xfs_trans.h')
-rw-r--r-- | fs/xfs/xfs_trans.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h index cd29f6171021..a44dba5b2cdb 100644 --- a/fs/xfs/xfs_trans.h +++ b/fs/xfs/xfs_trans.h | |||
@@ -405,7 +405,7 @@ typedef struct xfs_trans { | |||
405 | int64_t t_res_fdblocks_delta; /* on-disk only chg */ | 405 | int64_t t_res_fdblocks_delta; /* on-disk only chg */ |
406 | int64_t t_frextents_delta;/* superblock freextents chg*/ | 406 | int64_t t_frextents_delta;/* superblock freextents chg*/ |
407 | int64_t t_res_frextents_delta; /* on-disk only chg */ | 407 | int64_t t_res_frextents_delta; /* on-disk only chg */ |
408 | #ifdef DEBUG | 408 | #if defined(DEBUG) || defined(XFS_WARN) |
409 | int64_t t_ag_freeblks_delta; /* debugging counter */ | 409 | int64_t t_ag_freeblks_delta; /* debugging counter */ |
410 | int64_t t_ag_flist_delta; /* debugging counter */ | 410 | int64_t t_ag_flist_delta; /* debugging counter */ |
411 | int64_t t_ag_btree_delta; /* debugging counter */ | 411 | int64_t t_ag_btree_delta; /* debugging counter */ |
@@ -433,7 +433,7 @@ typedef struct xfs_trans { | |||
433 | #define xfs_trans_get_block_res(tp) ((tp)->t_blk_res) | 433 | #define xfs_trans_get_block_res(tp) ((tp)->t_blk_res) |
434 | #define xfs_trans_set_sync(tp) ((tp)->t_flags |= XFS_TRANS_SYNC) | 434 | #define xfs_trans_set_sync(tp) ((tp)->t_flags |= XFS_TRANS_SYNC) |
435 | 435 | ||
436 | #ifdef DEBUG | 436 | #if defined(DEBUG) || defined(XFS_WARN) |
437 | #define xfs_trans_agblocks_delta(tp, d) ((tp)->t_ag_freeblks_delta += (int64_t)d) | 437 | #define xfs_trans_agblocks_delta(tp, d) ((tp)->t_ag_freeblks_delta += (int64_t)d) |
438 | #define xfs_trans_agflist_delta(tp, d) ((tp)->t_ag_flist_delta += (int64_t)d) | 438 | #define xfs_trans_agflist_delta(tp, d) ((tp)->t_ag_flist_delta += (int64_t)d) |
439 | #define xfs_trans_agbtree_delta(tp, d) ((tp)->t_ag_btree_delta += (int64_t)d) | 439 | #define xfs_trans_agbtree_delta(tp, d) ((tp)->t_ag_btree_delta += (int64_t)d) |