Fix a compiler warning on pre-2.6.35 non-RHEL systems.

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@3430 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2011-04-30 06:41:03 +00:00
parent 73a32544ae
commit ec5a178eac

View File

@@ -339,7 +339,7 @@ out_unlock_put:
goto out;
}
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 35) && RHEL_MAJOR -0 < 6
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 35) && (!defined(RHEL_MAJOR) || RHEL_MAJOR -0 < 6)
static int sgv_shrink(int nr, gfp_t gfpm)
#else
static int sgv_shrink(struct shrinker *shrinker, int nr, gfp_t gfpm)