From: Li Dongyang Date: Mon, 3 Sep 2018 07:36:34 +0000 (+1000) Subject: LU-11328 ldlm: fix compile problem with --disable-lru-size X-Git-Tag: 2.11.55~12 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F33103%2F2;p=fs%2Flustre-release.git LU-11328 ldlm: fix compile problem with --disable-lru-size add the missing type change for ldlm_pool_recalc. Test-Parameters: trivial Signed-off-by: Li Dongyang Change-Id: I5b96dbe79e9b202888cf0f23a947c2d6c0f0d8d8 Reviewed-on: https://review.whamcloud.com/33103 Reviewed-by: Andreas Dilger Tested-by: Jenkins Tested-by: Maloo Reviewed-by: James Simmons --- diff --git a/lustre/ldlm/ldlm_pool.c b/lustre/ldlm/ldlm_pool.c index c44f375..d9c55e0 100644 --- a/lustre/ldlm/ldlm_pool.c +++ b/lustre/ldlm/ldlm_pool.c @@ -1439,7 +1439,7 @@ int ldlm_pool_setup(struct ldlm_pool *pl, int limit) return 0; } -int ldlm_pool_recalc(struct ldlm_pool *pl) +time64_t ldlm_pool_recalc(struct ldlm_pool *pl) { return 0; }