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
c5d08c19
Commit
c5d08c19
authored
Dec 13, 2002
by
Matthew Wilcox
Committed by
Linus Torvalds
Dec 13, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Remove test/set_bit from dl2k
This driver does not need to use atomic operations on local variables.
parent
8020f933
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
10 deletions
+7
-10
drivers/net/dl2k.c
drivers/net/dl2k.c
+7
-10
No files found.
drivers/net/dl2k.c
View file @
c5d08c19
...
@@ -1140,10 +1140,6 @@ set_multicast (struct net_device *dev)
...
@@ -1140,10 +1140,6 @@ set_multicast (struct net_device *dev)
long
ioaddr
=
dev
->
base_addr
;
long
ioaddr
=
dev
->
base_addr
;
u32
hash_table
[
2
];
u32
hash_table
[
2
];
u16
rx_mode
=
0
;
u16
rx_mode
=
0
;
int
i
;
int
bit
;
long
index
,
crc
;
struct
dev_mc_list
*
mclist
;
struct
netdev_private
*
np
=
dev
->
priv
;
struct
netdev_private
*
np
=
dev
->
priv
;
hash_table
[
0
]
=
hash_table
[
1
]
=
0
;
hash_table
[
0
]
=
hash_table
[
1
]
=
0
;
...
@@ -1157,6 +1153,8 @@ set_multicast (struct net_device *dev)
...
@@ -1157,6 +1153,8 @@ set_multicast (struct net_device *dev)
/* Receive broadcast and multicast frames */
/* Receive broadcast and multicast frames */
rx_mode
=
ReceiveBroadcast
|
ReceiveMulticast
|
ReceiveUnicast
;
rx_mode
=
ReceiveBroadcast
|
ReceiveMulticast
|
ReceiveUnicast
;
}
else
if
(
dev
->
mc_count
>
0
)
{
}
else
if
(
dev
->
mc_count
>
0
)
{
int
i
;
struct
dev_mc_list
*
mclist
;
/* Receive broadcast frames and multicast frames filtering
/* Receive broadcast frames and multicast frames filtering
by Hashtable */
by Hashtable */
rx_mode
=
rx_mode
=
...
@@ -1164,14 +1162,13 @@ set_multicast (struct net_device *dev)
...
@@ -1164,14 +1162,13 @@ set_multicast (struct net_device *dev)
for
(
i
=
0
,
mclist
=
dev
->
mc_list
;
mclist
&&
i
<
dev
->
mc_count
;
for
(
i
=
0
,
mclist
=
dev
->
mc_list
;
mclist
&&
i
<
dev
->
mc_count
;
i
++
,
mclist
=
mclist
->
next
)
i
++
,
mclist
=
mclist
->
next
)
{
{
crc
=
ether_crc_le
(
ETH_ALEN
,
mclist
->
dmi_addr
);
int
bit
,
index
=
0
;
int
crc
=
ether_crc_le
(
ETH_ALEN
,
mclist
->
dmi_addr
);
/* The inverted high significant 6 bits of CRC are
/* The inverted high significant 6 bits of CRC are
used as an index to hashtable */
used as an index to hashtable */
for
(
index
=
0
,
bit
=
0
;
bit
<
6
;
bit
++
)
{
for
(
bit
=
0
;
bit
<
6
;
bit
++
)
if
(
test_bit
(
31
-
bit
,
&
crc
))
{
if
(
crc
&
(
1
<<
(
31
-
bit
)))
set_bit
(
bit
,
&
index
);
index
|=
(
1
<<
bit
);
}
}
hash_table
[
index
/
32
]
|=
(
1
<<
(
index
%
32
));
hash_table
[
index
/
32
]
|=
(
1
<<
(
index
%
32
));
}
}
}
else
{
}
else
{
...
...
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