patch-2.4.8 linux/include/linux/inetdevice.h
Next file: linux/include/linux/init.h
Previous file: linux/include/linux/ibmtr.h
Back to the patch index
Back to the overall index
- Lines: 62
- Date:
Thu Jul 26 13:52:39 2001
- Orig file:
v2.4.7/linux/include/linux/inetdevice.h
- Orig date:
Wed May 16 10:21:45 2001
diff -u --recursive --new-file v2.4.7/linux/include/linux/inetdevice.h linux/include/linux/inetdevice.h
@@ -85,7 +85,7 @@
extern struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, u32 prefix, u32 mask);
extern void inet_forward_change(void);
-extern __inline__ int inet_ifa_match(u32 addr, struct in_ifaddr *ifa)
+static __inline__ int inet_ifa_match(u32 addr, struct in_ifaddr *ifa)
{
return !((addr^ifa->ifa_address)&ifa->ifa_mask);
}
@@ -94,7 +94,7 @@
* Check if a mask is acceptable.
*/
-extern __inline__ int bad_mask(u32 mask, u32 addr)
+static __inline__ int bad_mask(u32 mask, u32 addr)
{
if (addr & (mask = ~mask))
return 1;
@@ -116,7 +116,7 @@
extern rwlock_t inetdev_lock;
-extern __inline__ struct in_device *
+static __inline__ struct in_device *
in_dev_get(const struct net_device *dev)
{
struct in_device *in_dev;
@@ -129,7 +129,7 @@
return in_dev;
}
-extern __inline__ struct in_device *
+static __inline__ struct in_device *
__in_dev_get(const struct net_device *dev)
{
return (struct in_device*)dev->ip_ptr;
@@ -137,7 +137,7 @@
extern void in_dev_finish_destroy(struct in_device *idev);
-extern __inline__ void
+static __inline__ void
in_dev_put(struct in_device *idev)
{
if (atomic_dec_and_test(&idev->refcnt))
@@ -149,14 +149,14 @@
#endif /* __KERNEL__ */
-extern __inline__ __u32 inet_make_mask(int logmask)
+static __inline__ __u32 inet_make_mask(int logmask)
{
if (logmask)
return htonl(~((1<<(32-logmask))-1));
return 0;
}
-extern __inline__ int inet_mask_len(__u32 mask)
+static __inline__ int inet_mask_len(__u32 mask)
{
if (!(mask = ntohl(mask)))
return 0;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)