diff options
-rw-r--r-- | net/bluetooth/hidp/core.c | 2 | ||||
-rw-r--r-- | net/bridge/br_netfilter.c | 2 | ||||
-rw-r--r-- | net/core/sock.c | 2 | ||||
-rw-r--r-- | net/ipv6/addrconf.c | 6 | ||||
-rw-r--r-- | net/ipv6/route.c | 4 | ||||
-rw-r--r-- | net/ipv6/xfrm6_tunnel.c | 4 | ||||
-rw-r--r-- | net/sched/cls_route.c | 2 | ||||
-rw-r--r-- | net/xfrm/xfrm_user.c | 2 |
8 files changed, 12 insertions, 12 deletions
diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c index 4c914df5fd06..ecfe8da1ce6b 100644 --- a/net/bluetooth/hidp/core.c +++ b/net/bluetooth/hidp/core.c | |||
@@ -319,7 +319,7 @@ static int __hidp_send_ctrl_message(struct hidp_session *session, | |||
319 | return 0; | 319 | return 0; |
320 | } | 320 | } |
321 | 321 | ||
322 | static int inline hidp_send_ctrl_message(struct hidp_session *session, | 322 | static inline int hidp_send_ctrl_message(struct hidp_session *session, |
323 | unsigned char hdr, unsigned char *data, int size) | 323 | unsigned char hdr, unsigned char *data, int size) |
324 | { | 324 | { |
325 | int err; | 325 | int err; |
diff --git a/net/bridge/br_netfilter.c b/net/bridge/br_netfilter.c index 7712d76f06ba..5439a3c46c3e 100644 --- a/net/bridge/br_netfilter.c +++ b/net/bridge/br_netfilter.c | |||
@@ -61,7 +61,7 @@ static int brnf_filter_vlan_tagged __read_mostly = 1; | |||
61 | #define brnf_filter_vlan_tagged 1 | 61 | #define brnf_filter_vlan_tagged 1 |
62 | #endif | 62 | #endif |
63 | 63 | ||
64 | static __be16 inline vlan_proto(const struct sk_buff *skb) | 64 | static inline __be16 vlan_proto(const struct sk_buff *skb) |
65 | { | 65 | { |
66 | return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto; | 66 | return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto; |
67 | } | 67 | } |
diff --git a/net/core/sock.c b/net/core/sock.c index 8d65d6478dcd..27c4f62382bd 100644 --- a/net/core/sock.c +++ b/net/core/sock.c | |||
@@ -808,7 +808,7 @@ lenout: | |||
808 | * | 808 | * |
809 | * (We also register the sk_lock with the lock validator.) | 809 | * (We also register the sk_lock with the lock validator.) |
810 | */ | 810 | */ |
811 | static void inline sock_lock_init(struct sock *sk) | 811 | static inline void sock_lock_init(struct sock *sk) |
812 | { | 812 | { |
813 | sock_lock_init_class_and_name(sk, | 813 | sock_lock_init_class_and_name(sk, |
814 | af_family_slock_key_strings[sk->sk_family], | 814 | af_family_slock_key_strings[sk->sk_family], |
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index a7fee6b27320..1b616992d916 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c | |||
@@ -804,7 +804,7 @@ struct ipv6_saddr_score { | |||
804 | #define IPV6_SADDR_SCORE_LABEL 0x0020 | 804 | #define IPV6_SADDR_SCORE_LABEL 0x0020 |
805 | #define IPV6_SADDR_SCORE_PRIVACY 0x0040 | 805 | #define IPV6_SADDR_SCORE_PRIVACY 0x0040 |
806 | 806 | ||
807 | static int inline ipv6_saddr_preferred(int type) | 807 | static inline int ipv6_saddr_preferred(int type) |
808 | { | 808 | { |
809 | if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4| | 809 | if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4| |
810 | IPV6_ADDR_LOOPBACK|IPV6_ADDR_RESERVED)) | 810 | IPV6_ADDR_LOOPBACK|IPV6_ADDR_RESERVED)) |
@@ -813,7 +813,7 @@ static int inline ipv6_saddr_preferred(int type) | |||
813 | } | 813 | } |
814 | 814 | ||
815 | /* static matching label */ | 815 | /* static matching label */ |
816 | static int inline ipv6_saddr_label(const struct in6_addr *addr, int type) | 816 | static inline int ipv6_saddr_label(const struct in6_addr *addr, int type) |
817 | { | 817 | { |
818 | /* | 818 | /* |
819 | * prefix (longest match) label | 819 | * prefix (longest match) label |
@@ -3318,7 +3318,7 @@ errout: | |||
3318 | rtnl_set_sk_err(RTNLGRP_IPV6_IFADDR, err); | 3318 | rtnl_set_sk_err(RTNLGRP_IPV6_IFADDR, err); |
3319 | } | 3319 | } |
3320 | 3320 | ||
3321 | static void inline ipv6_store_devconf(struct ipv6_devconf *cnf, | 3321 | static inline void ipv6_store_devconf(struct ipv6_devconf *cnf, |
3322 | __s32 *array, int bytes) | 3322 | __s32 *array, int bytes) |
3323 | { | 3323 | { |
3324 | BUG_ON(bytes < (DEVCONF_MAX * 4)); | 3324 | BUG_ON(bytes < (DEVCONF_MAX * 4)); |
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 0e1f4b2cd3dd..a6b3117df546 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c | |||
@@ -308,7 +308,7 @@ static inline void rt6_probe(struct rt6_info *rt) | |||
308 | /* | 308 | /* |
309 | * Default Router Selection (RFC 2461 6.3.6) | 309 | * Default Router Selection (RFC 2461 6.3.6) |
310 | */ | 310 | */ |
311 | static int inline rt6_check_dev(struct rt6_info *rt, int oif) | 311 | static inline int rt6_check_dev(struct rt6_info *rt, int oif) |
312 | { | 312 | { |
313 | struct net_device *dev = rt->rt6i_dev; | 313 | struct net_device *dev = rt->rt6i_dev; |
314 | int ret = 0; | 314 | int ret = 0; |
@@ -328,7 +328,7 @@ static int inline rt6_check_dev(struct rt6_info *rt, int oif) | |||
328 | return ret; | 328 | return ret; |
329 | } | 329 | } |
330 | 330 | ||
331 | static int inline rt6_check_neigh(struct rt6_info *rt) | 331 | static inline int rt6_check_neigh(struct rt6_info *rt) |
332 | { | 332 | { |
333 | struct neighbour *neigh = rt->rt6i_nexthop; | 333 | struct neighbour *neigh = rt->rt6i_nexthop; |
334 | int m = 0; | 334 | int m = 0; |
diff --git a/net/ipv6/xfrm6_tunnel.c b/net/ipv6/xfrm6_tunnel.c index ee4b84a33ff4..93c42232aa39 100644 --- a/net/ipv6/xfrm6_tunnel.c +++ b/net/ipv6/xfrm6_tunnel.c | |||
@@ -58,7 +58,7 @@ static struct kmem_cache *xfrm6_tunnel_spi_kmem __read_mostly; | |||
58 | static struct hlist_head xfrm6_tunnel_spi_byaddr[XFRM6_TUNNEL_SPI_BYADDR_HSIZE]; | 58 | static struct hlist_head xfrm6_tunnel_spi_byaddr[XFRM6_TUNNEL_SPI_BYADDR_HSIZE]; |
59 | static struct hlist_head xfrm6_tunnel_spi_byspi[XFRM6_TUNNEL_SPI_BYSPI_HSIZE]; | 59 | static struct hlist_head xfrm6_tunnel_spi_byspi[XFRM6_TUNNEL_SPI_BYSPI_HSIZE]; |
60 | 60 | ||
61 | static unsigned inline xfrm6_tunnel_spi_hash_byaddr(xfrm_address_t *addr) | 61 | static inline unsigned xfrm6_tunnel_spi_hash_byaddr(xfrm_address_t *addr) |
62 | { | 62 | { |
63 | unsigned h; | 63 | unsigned h; |
64 | 64 | ||
@@ -70,7 +70,7 @@ static unsigned inline xfrm6_tunnel_spi_hash_byaddr(xfrm_address_t *addr) | |||
70 | return h; | 70 | return h; |
71 | } | 71 | } |
72 | 72 | ||
73 | static unsigned inline xfrm6_tunnel_spi_hash_byspi(u32 spi) | 73 | static inline unsigned xfrm6_tunnel_spi_hash_byspi(u32 spi) |
74 | { | 74 | { |
75 | return spi % XFRM6_TUNNEL_SPI_BYSPI_HSIZE; | 75 | return spi % XFRM6_TUNNEL_SPI_BYSPI_HSIZE; |
76 | } | 76 | } |
diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c index e85df07d8ce7..abc47cc48ad0 100644 --- a/net/sched/cls_route.c +++ b/net/sched/cls_route.c | |||
@@ -93,7 +93,7 @@ void route4_reset_fastmap(struct net_device *dev, struct route4_head *head, u32 | |||
93 | spin_unlock_bh(&dev->queue_lock); | 93 | spin_unlock_bh(&dev->queue_lock); |
94 | } | 94 | } |
95 | 95 | ||
96 | static void __inline__ | 96 | static inline void |
97 | route4_set_fastmap(struct route4_head *head, u32 id, int iif, | 97 | route4_set_fastmap(struct route4_head *head, u32 id, int iif, |
98 | struct route4_filter *f) | 98 | struct route4_filter *f) |
99 | { | 99 | { |
diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c index 96789952f6a3..e81e2fb3d429 100644 --- a/net/xfrm/xfrm_user.c +++ b/net/xfrm/xfrm_user.c | |||
@@ -2025,7 +2025,7 @@ nlmsg_failure: | |||
2025 | return -1; | 2025 | return -1; |
2026 | } | 2026 | } |
2027 | 2027 | ||
2028 | static int inline xfrm_sa_len(struct xfrm_state *x) | 2028 | static inline int xfrm_sa_len(struct xfrm_state *x) |
2029 | { | 2029 | { |
2030 | int l = 0; | 2030 | int l = 0; |
2031 | if (x->aalg) | 2031 | if (x->aalg) |