From: shadow Date: Mon, 19 May 2008 16:21:38 +0000 (+0000) Subject: fix typo which added with 2.6.22 support. X-Git-Tag: v1_9_50~473 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=63b227ab99f727c9cd9e81b98a9fb3d9fe4f1dae;p=fs%2Flustre-release.git fix typo which added with 2.6.22 support. --- diff --git a/lustre/obdclass/linux/linux-obdo.c b/lustre/obdclass/linux/linux-obdo.c index b66062d..d87dd09 100644 --- a/lustre/obdclass/linux/linux-obdo.c +++ b/lustre/obdclass/linux/linux-obdo.c @@ -185,7 +185,7 @@ void obdo_refresh_inode(struct inode *dst, struct obdo *src, obd_flag valid) if (valid & OBD_MD_FLBLKSZ && src->o_blksize > (1 << dst->i_blkbits)) { dst->i_blkbits = ffs(src->o_blksize) - 1; #ifdef HAVE_INODE_BLKSIZE - dst->i_blkbits = src->o_blksize; + dst->i_blksize = src->o_blksize; #endif }