From: Jeff Liu Date: Tue, 19 Feb 2013 05:31:29 +0000 (+0000) Subject: xfsprogs: rename max_attrset_trans_res_adjust to max_attrsetm_trans_res_adjust X-Git-Tag: v3.1.11~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21f4e23356f1723ab67d8cf06f399410cb207af0;p=thirdparty%2Fxfsprogs-dev.git xfsprogs: rename max_attrset_trans_res_adjust to max_attrsetm_trans_res_adjust Rename max_attrset_trans_res_adjust to max_attrsetm_trans_res_adjust to indicate that we does it at mount time. Signed-off-by: Jie Liu Reviewed-by: Mark Tinguely Signed-off-by: Mark Tinguely --- diff --git a/mkfs/maxtrres.c b/mkfs/maxtrres.c index beb81f842..f12cc70e5 100644 --- a/mkfs/maxtrres.c +++ b/mkfs/maxtrres.c @@ -28,7 +28,7 @@ #include "xfs_mkfs.h" static void -max_attrset_trans_res_adjust( +max_attrsetm_trans_res_adjust( xfs_mount_t *mp) { int local; @@ -94,7 +94,7 @@ max_trans_res( (dirversion == 2 ? XFS_SB_VERSION_DIRV2BIT : 0); libxfs_mount(&mount, sbp, 0,0,0,0); - max_attrset_trans_res_adjust(&mount); + max_attrsetm_trans_res_adjust(&mount); maxres = max_trans_res_by_mount(&mount); maxfsb = XFS_B_TO_FSB(&mount, maxres); libxfs_umount(&mount);