Messages in this thread Patch in this message |  | | | Date | Wed, 24 Aug 2005 17:58:06 +0200 | | From | Adrian Bunk <> | | Subject | [2.6 patch] include/net/ip_vs.h: "extern inline" -> "static inline" |
| |
"extern inline" doesn't make much sense.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- linux-2.6.13-rc6-mm2-full/include/net/ip_vs.h.old 2005-08-24 16:51:58.000000000 +0200 +++ linux-2.6.13-rc6-mm2-full/include/net/ip_vs.h 2005-08-24 16:51:38.000000000 +0200 @@ -958,7 +958,7 @@ */ #define IP_VS_FWD_METHOD(cp) (cp->flags & IP_VS_CONN_F_FWD_MASK) -extern __inline__ char ip_vs_fwd_tag(struct ip_vs_conn *cp) +static inline char ip_vs_fwd_tag(struct ip_vs_conn *cp) { char fwd; - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |