diff options
author | Luiz Otavio O Souza <luiz@netgate.com> | 2016-02-17 08:43:09 -0600 |
---|---|---|
committer | Luiz Otavio O Souza <luiz@netgate.com> | 2016-02-17 08:46:26 -0600 |
commit | 7fc73a5bf049135327823dd03828af5811f9021d (patch) | |
tree | 2a09ada9dcd4b23d9b2a219cf1efe931702edd4c /sbin | |
parent | 413cef1028ae431e2f2d4fbb024d0a3a15a41c41 (diff) | |
download | FreeBSD-src-7fc73a5bf049135327823dd03828af5811f9021d.zip FreeBSD-src-7fc73a5bf049135327823dd03828af5811f9021d.tar.gz |
Importing pfSense patch pfaltq_interface_bw.diff
Sets default speed to 1G.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pfctl/pfctl_altq.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c index 6c33bf7..9a21754 100644 --- a/sbin/pfctl/pfctl_altq.c +++ b/sbin/pfctl/pfctl_altq.c @@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$"); #include <errno.h> #include <limits.h> #include <math.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -264,15 +265,11 @@ eval_pfaltq(struct pfctl *pf, struct pf_altq *pa, struct node_queue_bw *bw, pa->ifbandwidth = bw->bw_absolute; else #ifdef __FreeBSD__ - if ((rate = getifspeed(pf->dev, pa->ifname)) == 0) { -#else - if ((rate = getifspeed(pa->ifname)) == 0) { + rate = getifspeed(pf->dev, pa->ifname); + if (rate == 0) + rate = IF_Mbps(1000); #endif - fprintf(stderr, "interface %s does not know its bandwidth, " - "please specify an absolute bandwidth\n", - pa->ifname); - errors++; - } else if ((pa->ifbandwidth = eval_bwspec(bw, rate)) == 0) + if ((pa->ifbandwidth = eval_bwspec(bw, rate)) == 0) pa->ifbandwidth = rate; errors += eval_queue_opts(pa, opts, pa->ifbandwidth); |