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
a91e59bd
Commit
a91e59bd
authored
Jul 06, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PKT_SCHED]: Kill fix_u32_bug ifdef tests in cls_u32.c
parent
9a518821
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
net/sched/cls_u32.c
net/sched/cls_u32.c
+0
-6
No files found.
net/sched/cls_u32.c
View file @
a91e59bd
...
...
@@ -102,14 +102,8 @@ static struct tc_u_common *u32_list;
static
__inline__
unsigned
u32_hash_fold
(
u32
key
,
struct
tc_u32_sel
*
sel
,
u8
fshift
)
{
#ifndef fix_u32_bug
unsigned
h
=
(
key
&
sel
->
hmask
)
>>
fshift
;
#else
unsigned
h
=
(
key
&
sel
->
hmask
);
h
^=
h
>>
16
;
h
^=
h
>>
8
;
#endif
return
h
;
}
...
...
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