From: adilger Date: Wed, 14 Mar 2007 08:14:51 +0000 (+0000) Subject: Branch HEAD X-Git-Tag: 1.4.10~73 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=cf5297e8e9966d5d860b687f1954e781ee5bf489;p=fs%2Flustre-release.git Branch HEAD Pass correct variable to obd_statfs_rqset(). Unnoticed because of missing #ifdef _HAVE_STATVFS --- diff --git a/lustre/liblustre/super.c b/lustre/liblustre/super.c index 66f8681..cb50b8d 100644 --- a/lustre/liblustre/super.c +++ b/lustre/liblustre/super.c @@ -1112,7 +1112,7 @@ static int llu_statfs_internal(struct llu_sb_info *sbi, osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files); rc = obd_statfs_rqset(class_exp2obd(sbi->ll_osc_exp), - &obd_statfs, max_age); + &obd_osfs, max_age); if (rc) { CERROR("obd_statfs fails: rc = %d\n", rc); RETURN(rc);