Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 36839
b: refs/heads/master
c: ea4d9e7
h: refs/heads/master
i:
  36837: 132d4d3
  36835: d753346
  36831: 4095fe8
v: v3
  • Loading branch information
Al Viro authored and David S. Miller committed Sep 29, 2006
1 parent 17195ff commit 933f3ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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: 942bf921e922560c05fde6afb00ddedf6224c608
refs/heads/master: ea4d9e7220d32348cc9742ba6d27de5165262664
4 changes: 2 additions & 2 deletions trunk/include/linux/igmp.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ struct ip_sf_socklist
{
unsigned int sl_max;
unsigned int sl_count;
__u32 sl_addr[0];
__be32 sl_addr[0];
};

#define IP_SFLSIZE(count) (sizeof(struct ip_sf_socklist) + \
Expand All @@ -159,7 +159,7 @@ struct ip_mc_socklist
struct ip_sf_list
{
struct ip_sf_list *sf_next;
__u32 sf_inaddr;
__be32 sf_inaddr;
unsigned long sf_count[2]; /* include/exclude counts */
unsigned char sf_gsresp; /* include in g & s response? */
unsigned char sf_oldin; /* change state */
Expand Down
8 changes: 4 additions & 4 deletions trunk/net/ipv4/igmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
first = 1;
psf_prev = NULL;
for (psf=*psf_list; psf; psf=psf_next) {
u32 *psrc;
__be32 *psrc;

psf_next = psf->sf_next;

Expand Down Expand Up @@ -455,7 +455,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
skb = add_grhead(skb, pmc, type, &pgr);
first = 0;
}
psrc = (u32 *)skb_put(skb, sizeof(u32));
psrc = (__be32 *)skb_put(skb, sizeof(u32));
*psrc = psf->sf_inaddr;
scount++; stotal++;
if ((type == IGMPV3_ALLOW_NEW_SOURCES ||
Expand Down Expand Up @@ -748,7 +748,7 @@ static void igmp_timer_expire(unsigned long data)
}

/* mark EXCLUDE-mode sources */
static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __u32 *srcs)
static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
{
struct ip_sf_list *psf;
int i, scount;
Expand All @@ -775,7 +775,7 @@ static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __u32 *srcs)
return 1;
}

static int igmp_marksources(struct ip_mc_list *pmc, int nsrcs, __u32 *srcs)
static int igmp_marksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
{
struct ip_sf_list *psf;
int i, scount;
Expand Down

0 comments on commit 933f3ff

Please sign in to comment.