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
1bad3e44
Commit
1bad3e44
authored
Mar 02, 2003
by
Chas Williams
Committed by
David S. Miller
Mar 02, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ATM]: Let upper layer k now lec supports multicast.
parent
d0ab89f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
net/atm/lec.c
net/atm/lec.c
+9
-1
No files found.
net/atm/lec.c
View file @
1bad3e44
...
...
@@ -617,6 +617,14 @@ static int lec_change_mtu(struct net_device *dev, int new_mtu)
return
0
;
}
static
void
lec_set_multicast_list
(
struct
net_device
*
dev
)
{
/* by default, all multicast frames arrive over the bus.
* eventually support selective multicast service
*/
return
;
}
static
void
lec_init
(
struct
net_device
*
dev
)
{
...
...
@@ -626,7 +634,7 @@ lec_init(struct net_device *dev)
dev
->
hard_start_xmit
=
lec_send_packet
;
dev
->
get_stats
=
lec_get_stats
;
dev
->
set_multicast_list
=
NULL
;
dev
->
set_multicast_list
=
lec_set_multicast_list
;
dev
->
do_ioctl
=
NULL
;
printk
(
"%s: Initialized!
\n
"
,
dev
->
name
);
return
;
...
...
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