From: Eric Dumazet Date: Fri, 4 Jan 2008 04:43:21 +0000 (-0800) Subject: [XFRM]: Do not define km_migrate() if !CONFIG_XFRM_MIGRATE X-Git-Tag: v2.6.24-rc7~6^2~10 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d60abc2a937bf77575c3b8c83faeeb84a84e654;p=pandora-kernel.git [XFRM]: Do not define km_migrate() if !CONFIG_XFRM_MIGRATE In include/net/xfrm.h we find : #ifdef CONFIG_XFRM_MIGRATE extern int km_migrate(struct xfrm_selector *sel, u8 dir, u8 type, struct xfrm_migrate *m, int num_bundles); ... #endif We can also guard the function body itself in net/xfrm/xfrm_state.c with same condition. (Problem spoted by sparse checker) make C=2 net/xfrm/xfrm_state.o ... net/xfrm/xfrm_state.c:1765:5: warning: symbol 'km_migrate' was not declared. Should it be static? ... Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- Reading git-diff-tree failed