Whamcloud - gitweb
LU-610 fix the wrong data type in find_value_cmp
authorhongchao.zhang <hongchao.zhang@whamcloud.com>
Fri, 2 Sep 2011 08:57:18 +0000 (16:57 +0800)
committerOleg Drokin <green@whamcloud.com>
Wed, 5 Oct 2011 08:24:57 +0000 (04:24 -0400)
commit88c5c6458dc72ac9bee28b7b869a843542f964b3
tree694d715867d14f291ce757a76ad620955bbf90f8
parent0517160dd68ac026513ad1b8e3e6f7abd4acfdef
LU-610 fix the wrong data type in find_value_cmp

in function find_value_cmp (lustre/utils/liblustreapi.c), the data type for
paramters "file" and "limit" is converted from "unsigned long long" type into
"unsigned int" type by mistake, and the file size should be defined as
"unsigned long long" type too.

Change-Id: Icacebccdf55d8ad761390bb03aa9aab0fdc67131
Signed-off-by: Hongchao Zhang <hongchao.zhang@whamcloud.com>
Reviewed-on: http://review.whamcloud.com/1289
Tested-by: Hudson
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Reviewed-by: Yu Jian <yujian@whamcloud.com>
Tested-by: Maloo <whamcloud.maloo@gmail.com>
Reviewed-by: Fan Yong <yong.fan@whamcloud.com>
Reviewed-by: Oleg Drokin <green@whamcloud.com>
lustre/utils/liblustreapi.c