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
44303b29
Commit
44303b29
authored
Mar 10, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RED packet scheduler bug fixes from
Jamal Hadi Salim.
parent
c6892f5d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
net/sched/sch_gred.c
net/sched/sch_gred.c
+6
-4
No files found.
net/sched/sch_gred.c
View file @
44303b29
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* as published by the Free Software Foundation; either version
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
* 2 of the License, or (at your option) any later version.
*
*
* Authors: J Hadi Salim (hadi@
nortelnetworks.com) 1998,1999
* Authors: J Hadi Salim (hadi@
cyberus.ca) 1998-2002
*
*
* 991129: - Bug fix with grio mode
* 991129: - Bug fix with grio mode
* - a better sing. AvgQ mode with Grio(WRED)
* - a better sing. AvgQ mode with Grio(WRED)
...
@@ -436,7 +436,7 @@ static int gred_change(struct Qdisc *sch, struct rtattr *opt)
...
@@ -436,7 +436,7 @@ static int gred_change(struct Qdisc *sch, struct rtattr *opt)
if
(
table
->
tab
[
table
->
def
]
==
NULL
)
{
if
(
table
->
tab
[
table
->
def
]
==
NULL
)
{
table
->
tab
[
table
->
def
]
=
table
->
tab
[
table
->
def
]
=
kmalloc
(
sizeof
(
struct
gred_sched_data
),
GFP_KERNEL
);
kmalloc
(
sizeof
(
struct
gred_sched_data
),
GFP_KERNEL
);
if
(
NULL
==
table
->
tab
[
ctl
->
DP
])
if
(
NULL
==
table
->
tab
[
table
->
def
])
return
-
ENOMEM
;
return
-
ENOMEM
;
memset
(
table
->
tab
[
table
->
def
],
0
,
memset
(
table
->
tab
[
table
->
def
],
0
,
...
@@ -498,7 +498,7 @@ static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
...
@@ -498,7 +498,7 @@ static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
{
{
unsigned
long
qave
;
unsigned
long
qave
;
struct
rtattr
*
rta
;
struct
rtattr
*
rta
;
struct
tc_gred_qopt
*
opt
;
struct
tc_gred_qopt
*
opt
=
NULL
;
struct
tc_gred_qopt
*
dst
;
struct
tc_gred_qopt
*
dst
;
struct
gred_sched
*
table
=
(
struct
gred_sched
*
)
sch
->
data
;
struct
gred_sched
*
table
=
(
struct
gred_sched
*
)
sch
->
data
;
struct
gred_sched_data
*
q
;
struct
gred_sched_data
*
q
;
...
@@ -520,7 +520,6 @@ static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
...
@@ -520,7 +520,6 @@ static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
if
(
!
table
->
initd
)
{
if
(
!
table
->
initd
)
{
DPRINTK
(
"NO GRED Queues setup!
\n
"
);
DPRINTK
(
"NO GRED Queues setup!
\n
"
);
return
-
1
;
}
}
for
(
i
=
0
;
i
<
MAX_DPs
;
i
++
)
{
for
(
i
=
0
;
i
<
MAX_DPs
;
i
++
)
{
...
@@ -577,9 +576,12 @@ static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
...
@@ -577,9 +576,12 @@ static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
RTA_PUT
(
skb
,
TCA_GRED_PARMS
,
sizeof
(
struct
tc_gred_qopt
)
*
MAX_DPs
,
opt
);
RTA_PUT
(
skb
,
TCA_GRED_PARMS
,
sizeof
(
struct
tc_gred_qopt
)
*
MAX_DPs
,
opt
);
rta
->
rta_len
=
skb
->
tail
-
b
;
rta
->
rta_len
=
skb
->
tail
-
b
;
kfree
(
opt
);
return
skb
->
len
;
return
skb
->
len
;
rtattr_failure:
rtattr_failure:
if
(
opt
)
kfree
(
opt
);
DPRINTK
(
"gred_dump: FAILURE!!!!
\n
"
);
DPRINTK
(
"gred_dump: FAILURE!!!!
\n
"
);
/* also free the opt struct here */
/* also free the opt struct here */
...
...
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