summaryrefslogtreecommitdiff
path: root/tc/q_hhf.c
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2016-03-21 11:48:36 -0700
committerStephen Hemminger <stephen@networkplumber.org>2016-03-21 11:48:36 -0700
commit32a121cba257954963fbdd56a1c4567c2efc779a (patch)
treecd3d8057204e4cd73d338a8b861e47932d5e8e21 /tc/q_hhf.c
parent4733b18a5e69bde4844bfa5810afb42af379b6ee (diff)
tc: code cleanup
Use checkpatch to fix whitespace and other style issues.
Diffstat (limited to 'tc/q_hhf.c')
-rw-r--r--tc/q_hhf.c29
1 files changed, 15 insertions, 14 deletions
diff --git a/tc/q_hhf.c b/tc/q_hhf.c
index 06ec8a28..738b5636 100644
--- a/tc/q_hhf.c
+++ b/tc/q_hhf.c
@@ -28,13 +28,13 @@ static void explain(void)
static int hhf_parse_opt(struct qdisc_util *qu, int argc, char **argv,
struct nlmsghdr *n)
{
- unsigned limit = 0;
- unsigned quantum = 0;
- unsigned hh_limit = 0;
- unsigned reset_timeout = 0;
- unsigned admit_bytes = 0;
- unsigned evict_timeout = 0;
- unsigned non_hh_weight = 0;
+ unsigned int limit = 0;
+ unsigned int quantum = 0;
+ unsigned int hh_limit = 0;
+ unsigned int reset_timeout = 0;
+ unsigned int admit_bytes = 0;
+ unsigned int evict_timeout = 0;
+ unsigned int non_hh_weight = 0;
struct rtattr *tail;
while (argc > 0) {
@@ -120,13 +120,14 @@ static int hhf_parse_opt(struct qdisc_util *qu, int argc, char **argv,
static int hhf_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
{
struct rtattr *tb[TCA_HHF_MAX + 1];
- unsigned limit;
- unsigned quantum;
- unsigned hh_limit;
- unsigned reset_timeout;
- unsigned admit_bytes;
- unsigned evict_timeout;
- unsigned non_hh_weight;
+ unsigned int limit;
+ unsigned int quantum;
+ unsigned int hh_limit;
+ unsigned int reset_timeout;
+ unsigned int admit_bytes;
+ unsigned int evict_timeout;
+ unsigned int non_hh_weight;
+
SPRINT_BUF(b1);
if (opt == NULL)