[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1320460377-8682-5-git-send-email-soltys@ziu.info>
Date: Sat, 5 Nov 2011 03:32:50 +0100
From: Michal Soltys <soltys@....info>
To: kaber@...sh.net
Cc: davem@...emloft.net, netdev@...r.kernel.org
Subject: [PATCH 04/11] sch_hfsc.c: remove initial check in vttree_get_minvt() (optional)
Remove initial check in vttree_get_minvt(), as it's implicitly
handled by vttree_firstfit().
Also see:
http://marc.info/?l=linux-netdev&m=128457329614914&w=2
Signed-off-by: Michal Soltys <soltys@....info>
---
net/sched/sch_hfsc.c | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/net/sched/sch_hfsc.c b/net/sched/sch_hfsc.c
index 710cbda..97d720c 100644
--- a/net/sched/sch_hfsc.c
+++ b/net/sched/sch_hfsc.c
@@ -307,10 +307,6 @@ vttree_firstfit(struct hfsc_class *cl, u64 cur_time)
static struct hfsc_class *
vttree_get_minvt(struct hfsc_class *cl, u64 cur_time)
{
- /* if root-class's cfmin is bigger than cur_time nothing to do */
- if (cl->cl_cfmin > cur_time)
- return NULL;
-
while (cl->level > 0) {
cl = vttree_firstfit(cl, cur_time);
if (cl == NULL)
--
1.7.7.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists