Correct r284777 to use proper includes and remove dead code to unbreak kernel builds.
Differential Revision: https://reviews.freebsd.org/D2847
This commit is contained in:
parent
27d233f7cc
commit
cd2bc2ef4e
@ -103,9 +103,12 @@
|
||||
#include <sys/queue.h>
|
||||
|
||||
#include <net/if.h>
|
||||
#include <net/if_var.h>
|
||||
#include <netinet/in.h>
|
||||
|
||||
#include <net/pfvar.h>
|
||||
#include <netpfil/pf/pf.h>
|
||||
#include <netpfil/pf/pf_altq.h>
|
||||
#include <netpfil/pf/pf_mtag.h>
|
||||
#include <net/altq/altq.h>
|
||||
#include <net/altq/altq_fairq.h>
|
||||
|
||||
@ -406,24 +409,6 @@ fairq_class_create(struct fairq_if *pif, int pri, int qlimit,
|
||||
#endif /* ALTQ_RED */
|
||||
|
||||
return (cl);
|
||||
|
||||
err_buckets:
|
||||
if (cl->cl_buckets != NULL)
|
||||
free(cl->cl_buckets, M_DEVBUF);
|
||||
err_ret:
|
||||
if (cl->cl_red != NULL) {
|
||||
#ifdef ALTQ_RIO
|
||||
if (cl->cl_qtype == Q_RIO)
|
||||
rio_destroy((rio_t *)cl->cl_red);
|
||||
#endif
|
||||
#ifdef ALTQ_RED
|
||||
if (cl->cl_qtype == Q_RED)
|
||||
red_destroy(cl->cl_red);
|
||||
#endif
|
||||
}
|
||||
if (cl != NULL)
|
||||
free(cl, M_DEVBUF);
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user