From 873e8e73b82f8ef201ffa475e38d8b9ca11335a9 Mon Sep 17 00:00:00 2001 From: James Simmons Date: Fri, 5 Jun 2015 11:13:11 -0400 Subject: [PATCH 1/1] LU-6486 ptlrpc: export lustre_swab_lmv_mds_md For ppc64 clients lustre would not mount due to an Unknown symbol error. This is due to lustre_swab_lmv_mds_md not being exported. A simple export of this function resolves this issue. Change-Id: I8db142e91f376fa0727b9de774ae0ca1cb0d9b5a Signed-off-by: James Simmons Reviewed-on: http://review.whamcloud.com/15159 Reviewed-by: Bob Glossman Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Dmitry Eremin Reviewed-by: Oleg Drokin --- lustre/ptlrpc/pack_generic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lustre/ptlrpc/pack_generic.c b/lustre/ptlrpc/pack_generic.c index 9d46776..76751a8 100644 --- a/lustre/ptlrpc/pack_generic.c +++ b/lustre/ptlrpc/pack_generic.c @@ -2076,6 +2076,7 @@ void lustre_swab_lmv_mds_md(union lmv_mds_md *lmm) break; } } +EXPORT_SYMBOL(lustre_swab_lmv_mds_md); void lustre_swab_lmv_user_md(struct lmv_user_md *lum) { -- 1.8.3.1