Re: [Cluster-devel] [PATCH 1/2] fsck.gfs2: Improve reporting of pass timings

2014-11-14 Thread Bob Peterson
- Original Message -
 The days value is not currently reported in the pass timings but the
 hours value is still reported modulo 24.  Drop the use of gmtime(3) as
 it's more appropriate for calendar time operations than elapsed time,
 and add a simple duration reporting function which matches the existing
 output format.
 
 Signed-off-by: Andrew Price anpr...@redhat.com
 ---

ACK

Bob Peterson
Red Hat File Systems



Re: [Cluster-devel] [PATCH 2/2] mkfs.gfs2: Revert default resource group size

2014-11-14 Thread Bob Peterson
- Original Message -
 Choose a more performant resource group size than the maximum by default
 until gfs2 is more tuned for the larger number of bitmap blocks required
 for 2GB resource groups.
 
 Signed-off-by: Andrew Price anpr...@redhat.com
 ---
  gfs2/mkfs/main_mkfs.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/gfs2/mkfs/main_mkfs.c b/gfs2/mkfs/main_mkfs.c
 index b6353dd..2590ec8 100644
 --- a/gfs2/mkfs/main_mkfs.c
 +++ b/gfs2/mkfs/main_mkfs.c
 @@ -147,7 +147,7 @@ static void opts_init(struct mkfs_opts *opts)
   opts-bsize = GFS2_DEFAULT_BSIZE;
   opts-jsize = GFS2_DEFAULT_JSIZE;
   opts-qcsize = GFS2_DEFAULT_QCSIZE;
 - opts-rgsize = GFS2_MAX_RGSIZE;
 + opts-rgsize = GFS2_DEFAULT_RGSIZE;
   opts-lockproto = lock_dlm;
   opts-locktable = ;
   opts-confirm = 1;
 --
 1.9.3
 

ACK

Bob Peterson
Red Hat File Systems