Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 36863
b: refs/heads/master
c: 81f7bf6
h: refs/heads/master
i:
  36861: 0c3b5a7
  36859: 1738721
  36855: 35e41f5
  36847: d2f8039
  36831: 4095fe8
  36799: 1b3847b
  36735: 350989c
  36607: 5f6cd71
  36351: eff43d1
  35839: cc4705e
  34815: ef8e8ab
  32767: 5ae4f03
v: v3
  • Loading branch information
Al Viro authored and David S. Miller committed Sep 29, 2006
1 parent 944f48a commit 71092ce
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 20 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 114c7844f34c1608aec20ae7ff85cec471ac90ae
refs/heads/master: 81f7bf6cbaca02c034b0393c51fc22b29cba20f7
2 changes: 1 addition & 1 deletion trunk/include/net/ip_fib.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ struct rtentry;

/* Exported by fib_semantics.c */
extern int ip_fib_check_default(__be32 gw, struct net_device *dev);
extern int fib_sync_down(u32 local, struct net_device *dev, int force);
extern int fib_sync_down(__be32 local, struct net_device *dev, int force);
extern int fib_sync_up(struct net_device *dev);
extern __be32 __fib_res_prefsrc(struct fib_result *res);

Expand Down
7 changes: 3 additions & 4 deletions trunk/net/ipv4/fib_frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ int fib_validate_source(__be32 src, __be32 dst, u8 tos, int oif,

#ifndef CONFIG_IP_NOSIOCRT

static inline u32 sk_extract_addr(struct sockaddr *addr)
static inline __be32 sk_extract_addr(struct sockaddr *addr)
{
return ((struct sockaddr_in *) addr)->sin_addr.s_addr;
}
Expand Down Expand Up @@ -292,7 +292,7 @@ static int rtentry_to_fib_config(int cmd, struct rtentry *rt,
plen = 32;
addr = sk_extract_addr(&rt->rt_dst);
if (!(rt->rt_flags & RTF_HOST)) {
u32 mask = sk_extract_addr(&rt->rt_genmask);
__be32 mask = sk_extract_addr(&rt->rt_genmask);

if (rt->rt_genmask.sa_family != AF_INET) {
if (mask || rt->rt_genmask.sa_family)
Expand Down Expand Up @@ -627,8 +627,7 @@ int inet_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
only when netlink is already locked.
*/

static void fib_magic(int cmd, int type, u32 dst, int dst_len,
struct in_ifaddr *ifa)
static void fib_magic(int cmd, int type, __be32 dst, int dst_len, struct in_ifaddr *ifa)
{
struct fib_table *tb;
struct fib_config cfg = {
Expand Down
4 changes: 2 additions & 2 deletions trunk/net/ipv4/fib_lookup.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ extern void fib_release_info(struct fib_info *);
extern struct fib_info *fib_create_info(struct fib_config *cfg);
extern int fib_nh_match(struct fib_config *cfg, struct fib_info *fi);
extern int fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
u32 tb_id, u8 type, u8 scope, u32 dst,
u32 tb_id, u8 type, u8 scope, __be32 dst,
int dst_len, u8 tos, struct fib_info *fi,
unsigned int);
extern void rtmsg_fib(int event, u32 key, struct fib_alias *fa,
extern void rtmsg_fib(int event, __be32 key, struct fib_alias *fa,
int dst_len, u32 tb_id, struct nl_info *info);
extern struct fib_alias *fib_find_alias(struct list_head *fah,
u8 tos, u32 prio);
Expand Down
12 changes: 6 additions & 6 deletions trunk/net/ipv4/fib_rules.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ struct fib4_rule
u8 dst_len;
u8 src_len;
u8 tos;
u32 src;
u32 srcmask;
u32 dst;
u32 dstmask;
__be32 src;
__be32 srcmask;
__be32 dst;
__be32 dstmask;
#ifdef CONFIG_IP_ROUTE_FWMARK
u32 fwmark;
u32 fwmask;
Expand Down Expand Up @@ -150,8 +150,8 @@ void fib_select_default(const struct flowi *flp, struct fib_result *res)
static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
{
struct fib4_rule *r = (struct fib4_rule *) rule;
u32 daddr = fl->fl4_dst;
u32 saddr = fl->fl4_src;
__be32 daddr = fl->fl4_dst;
__be32 saddr = fl->fl4_src;

if (((saddr ^ r->src) & r->srcmask) ||
((daddr ^ r->dst) & r->dstmask))
Expand Down
12 changes: 6 additions & 6 deletions trunk/net/ipv4/fib_semantics.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ static inline unsigned int fib_info_hashfn(const struct fib_info *fi)
unsigned int val = fi->fib_nhs;

val ^= fi->fib_protocol;
val ^= fi->fib_prefsrc;
val ^= (__force u32)fi->fib_prefsrc;
val ^= fi->fib_priority;

return (val ^ (val >> 7) ^ (val >> 12)) & mask;
Expand Down Expand Up @@ -273,7 +273,7 @@ int ip_fib_check_default(__be32 gw, struct net_device *dev)
return -1;
}

void rtmsg_fib(int event, u32 key, struct fib_alias *fa,
void rtmsg_fib(int event, __be32 key, struct fib_alias *fa,
int dst_len, u32 tb_id, struct nl_info *info)
{
struct sk_buff *skb;
Expand Down Expand Up @@ -568,11 +568,11 @@ static int fib_check_nh(struct fib_config *cfg, struct fib_info *fi,
return 0;
}

static inline unsigned int fib_laddr_hashfn(u32 val)
static inline unsigned int fib_laddr_hashfn(__be32 val)
{
unsigned int mask = (fib_hash_size - 1);

return (val ^ (val >> 7) ^ (val >> 14)) & mask;
return ((__force u32)val ^ ((__force u32)val >> 7) ^ ((__force u32)val >> 14)) & mask;
}

static struct hlist_head *fib_hash_alloc(int bytes)
Expand Down Expand Up @@ -928,7 +928,7 @@ __be32 __fib_res_prefsrc(struct fib_result *res)
}

int fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
u32 tb_id, u8 type, u8 scope, u32 dst, int dst_len, u8 tos,
u32 tb_id, u8 type, u8 scope, __be32 dst, int dst_len, u8 tos,
struct fib_info *fi, unsigned int flags)
{
struct nlmsghdr *nlh;
Expand Down Expand Up @@ -1017,7 +1017,7 @@ int fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
- device went down -> we must shutdown all nexthops going via it.
*/

int fib_sync_down(u32 local, struct net_device *dev, int force)
int fib_sync_down(__be32 local, struct net_device *dev, int force)
{
int ret = 0;
int scope = RT_SCOPE_NOWHERE;
Expand Down

0 comments on commit 71092ce

Please sign in to comment.