Commit ea4d9e72 authored by Al Viro's avatar Al Viro Committed by David S. Miller

[IPV4]: struct ip_sf_list and struct ip_sf_socklist annotated

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 942bf921
...@@ -136,7 +136,7 @@ struct ip_sf_socklist ...@@ -136,7 +136,7 @@ struct ip_sf_socklist
{ {
unsigned int sl_max; unsigned int sl_max;
unsigned int sl_count; unsigned int sl_count;
__u32 sl_addr[0]; __be32 sl_addr[0];
}; };
#define IP_SFLSIZE(count) (sizeof(struct ip_sf_socklist) + \ #define IP_SFLSIZE(count) (sizeof(struct ip_sf_socklist) + \
...@@ -159,7 +159,7 @@ struct ip_mc_socklist ...@@ -159,7 +159,7 @@ struct ip_mc_socklist
struct ip_sf_list struct ip_sf_list
{ {
struct ip_sf_list *sf_next; struct ip_sf_list *sf_next;
__u32 sf_inaddr; __be32 sf_inaddr;
unsigned long sf_count[2]; /* include/exclude counts */ unsigned long sf_count[2]; /* include/exclude counts */
unsigned char sf_gsresp; /* include in g & s response? */ unsigned char sf_gsresp; /* include in g & s response? */
unsigned char sf_oldin; /* change state */ unsigned char sf_oldin; /* change state */
......
...@@ -426,7 +426,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc, ...@@ -426,7 +426,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc,
first = 1; first = 1;
psf_prev = NULL; psf_prev = NULL;
for (psf=*psf_list; psf; psf=psf_next) { for (psf=*psf_list; psf; psf=psf_next) {
u32 *psrc; __be32 *psrc;
psf_next = psf->sf_next; psf_next = psf->sf_next;
...@@ -455,7 +455,7 @@ static struct sk_buff *add_grec(struct sk_buff *skb, struct ip_mc_list *pmc, ...@@ -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); skb = add_grhead(skb, pmc, type, &pgr);
first = 0; first = 0;
} }
psrc = (u32 *)skb_put(skb, sizeof(u32)); psrc = (__be32 *)skb_put(skb, sizeof(u32));
*psrc = psf->sf_inaddr; *psrc = psf->sf_inaddr;
scount++; stotal++; scount++; stotal++;
if ((type == IGMPV3_ALLOW_NEW_SOURCES || if ((type == IGMPV3_ALLOW_NEW_SOURCES ||
...@@ -748,7 +748,7 @@ static void igmp_timer_expire(unsigned long data) ...@@ -748,7 +748,7 @@ static void igmp_timer_expire(unsigned long data)
} }
/* mark EXCLUDE-mode sources */ /* 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; struct ip_sf_list *psf;
int i, scount; int i, scount;
...@@ -775,7 +775,7 @@ static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __u32 *srcs) ...@@ -775,7 +775,7 @@ static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __u32 *srcs)
return 1; 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; struct ip_sf_list *psf;
int i, scount; int i, scount;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment