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
76729985
Commit
76729985
authored
Jun 21, 2004
by
Jamal Hadi Salim
Committed by
David S. Miller
Jun 21, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PKT_SCHED]: C99'ify act_police_ops.
parent
d51d5d95
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
net/sched/police.c
net/sched/police.c
+13
-13
No files found.
net/sched/police.c
View file @
76729985
...
...
@@ -393,19 +393,19 @@ MODULE_DESCRIPTION("Policing actions");
MODULE_LICENSE
(
"GPL"
);
struct
tc_action_ops
act_police_ops
=
{
NULL
,
"police"
,
TCA_ID_POLICE
,
TCA_CAP_NONE
,
THIS_MODULE
,
tcf_act_police
,
tcf_act_police_stats
,
tcf_act_police_dump
,
tcf_act_police_cleanup
,
tcf_hash_search
,
tcf_act_police_locate
,
tcf_generic_walker
st
atic
st
ruct
tc_action_ops
act_police_ops
=
{
.
next
=
NULL
,
.
kind
=
"police"
,
.
type
=
TCA_ID_POLICE
,
.
capab
=
TCA_CAP_NONE
,
.
owner
=
THIS_MODULE
,
.
act
=
tcf_act_police
,
.
get_stats
=
tcf_act_police_stats
,
.
dump
=
tcf_act_police_dump
,
.
cleanup
=
tcf_act_police_cleanup
,
.
lookup
=
tcf_hash_search
,
.
init
=
tcf_act_police_locate
,
.
walk
=
tcf_generic_walker
};
static
int
__init
...
...
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