From 43e4befc2efa5a1623f4c0981fff67a0e41576aa Mon Sep 17 00:00:00 2001 From: Li Dongyang Date: Mon, 3 Sep 2018 17:36:34 +1000 Subject: [PATCH] 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 --- lustre/ldlm/ldlm_pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 1.8.3.1