Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
e507c6fc
Commit
e507c6fc
authored
Mar 30, 2004
by
David Stevens
Committed by
Hideaki Yoshifuji
Mar 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPV4]: Fix IGMPv3 timer initialization when device not upped.
parent
da9509bd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
17 deletions
+14
-17
include/linux/inetdevice.h
include/linux/inetdevice.h
+0
-2
net/ipv4/devinet.c
net/ipv4/devinet.c
+1
-0
net/ipv4/igmp.c
net/ipv4/igmp.c
+13
-15
No files found.
include/linux/inetdevice.h
View file @
e507c6fc
...
...
@@ -36,8 +36,6 @@ struct in_device
rwlock_t
lock
;
int
dead
;
struct
in_ifaddr
*
ifa_list
;
/* IP ifaddr chain */
int
mc_initted
;
struct
ip_mc_list
*
mc_list
;
/* IP multicast filter chain */
rwlock_t
mc_lock
;
/* for mc_tomb */
struct
ip_mc_list
*
mc_tomb
;
...
...
net/ipv4/devinet.c
View file @
e507c6fc
...
...
@@ -165,6 +165,7 @@ struct in_device *inetdev_init(struct net_device *dev)
#ifdef CONFIG_SYSCTL
devinet_sysctl_register
(
in_dev
,
&
in_dev
->
cnf
);
#endif
ip_mc_init_dev
(
in_dev
);
if
(
dev
->
flags
&
IFF_UP
)
ip_mc_up
(
in_dev
);
out:
...
...
net/ipv4/igmp.c
View file @
e507c6fc
...
...
@@ -1217,8 +1217,8 @@ void ip_mc_down(struct in_device *in_dev)
ASSERT_RTNL
();
if
(
!
in_dev
->
mc_initted
)
return
;
for
(
i
=
in_dev
->
mc_list
;
i
;
i
=
i
->
next
)
igmp_group_dropped
(
i
)
;
#ifdef CONFIG_IP_MULTICAST
in_dev
->
mr_ifc_count
=
0
;
...
...
@@ -1227,24 +1227,14 @@ void ip_mc_down(struct in_device *in_dev)
in_dev
->
mr_gq_running
=
0
;
if
(
del_timer
(
&
in_dev
->
mr_gq_timer
))
__in_dev_put
(
in_dev
);
#endif
for
(
i
=
in_dev
->
mc_list
;
i
;
i
=
i
->
next
)
igmp_group_dropped
(
i
);
#ifdef CONFIG_IP_MULTICAST
igmpv3_clear_delrec
(
in_dev
);
#endif
ip_mc_dec_group
(
in_dev
,
IGMP_ALL_HOSTS
);
}
/* Device going up */
void
ip_mc_up
(
struct
in_device
*
in_dev
)
void
ip_mc_init_dev
(
struct
in_device
*
in_dev
)
{
struct
ip_mc_list
*
i
;
ASSERT_RTNL
();
in_dev
->
mc_tomb
=
0
;
...
...
@@ -1261,12 +1251,20 @@ void ip_mc_up(struct in_device *in_dev)
#endif
in_dev
->
mc_lock
=
RW_LOCK_UNLOCKED
;
}
/* Device going up */
void
ip_mc_up
(
struct
in_device
*
in_dev
)
{
struct
ip_mc_list
*
i
;
ASSERT_RTNL
();
ip_mc_inc_group
(
in_dev
,
IGMP_ALL_HOSTS
);
for
(
i
=
in_dev
->
mc_list
;
i
;
i
=
i
->
next
)
igmp_group_added
(
i
);
in_dev
->
mc_initted
=
1
;
}
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment