Ilpo J??rvinen <[EMAIL PROTECTED]> wrote: > > Signed-off-by: Ilpo J??rvinen <[EMAIL PROTECTED]>
Acked-by: Herbert Xu <[EMAIL PROTECTED]> > #ifdef CONFIG_AUDITSYSCALL > -static inline void xfrm_audit_helper_sainfo(struct xfrm_state *x, > - struct audit_buffer *audit_buf) > +static void xfrm_audit_helper_sainfo(struct xfrm_state *x, > + struct audit_buffer *audit_buf) We should never use inline except when it's on the fast path and this is definitely not a fast path. If a function ends up being called just once the compiler will most likely inline it anyway, making the use of the keyword inline redundant. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html