]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
[XFRM]: Do not define km_migrate() if !CONFIG_XFRM_MIGRATE
authorEric Dumazet <dada1@cosmosbay.com>
Fri, 4 Jan 2008 04:43:21 +0000 (20:43 -0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 4 Jan 2008 08:47:03 +0000 (00:47 -0800)
commit2d60abc2a937bf77575c3b8c83faeeb84a84e654
treeecabc0dd8bacbb1d3152251cdc1ac8274c7aed24
parent76975f8a3186dae501584d0155ea410464f62815
[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 <dada1@cosmosbay.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/xfrm/xfrm_state.c