Deleted Added
full compact
dn_sched_fifo.c (204591) dn_sched_fifo.c (240494)
1/*
2 * Copyright (c) 2010 Riccardo Panicucci, Universita` di Pisa
3 * All rights reserved
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27/*
1/*
2 * Copyright (c) 2010 Riccardo Panicucci, Universita` di Pisa
3 * All rights reserved
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27/*
28 * $FreeBSD: head/sys/netinet/ipfw/dn_sched_fifo.c 204591 2010-03-02 17:40:48Z luigi $
28 * $FreeBSD: head/sys/netpfil/ipfw/dn_sched_fifo.c 240494 2012-09-14 11:51:49Z glebius $
29 */
30
31#ifdef _KERNEL
32#include <sys/malloc.h>
33#include <sys/socket.h>
34#include <sys/socketvar.h>
35#include <sys/kernel.h>
36#include <sys/mbuf.h>
37#include <sys/module.h>
38#include <net/if.h> /* IFNAMSIZ */
39#include <netinet/in.h>
40#include <netinet/ip_var.h> /* ipfw_rule_ref */
41#include <netinet/ip_fw.h> /* flow_id */
42#include <netinet/ip_dummynet.h>
29 */
30
31#ifdef _KERNEL
32#include <sys/malloc.h>
33#include <sys/socket.h>
34#include <sys/socketvar.h>
35#include <sys/kernel.h>
36#include <sys/mbuf.h>
37#include <sys/module.h>
38#include <net/if.h> /* IFNAMSIZ */
39#include <netinet/in.h>
40#include <netinet/ip_var.h> /* ipfw_rule_ref */
41#include <netinet/ip_fw.h> /* flow_id */
42#include <netinet/ip_dummynet.h>
43#include <netinet/ipfw/dn_heap.h>
44#include <netinet/ipfw/ip_dn_private.h>
45#include <netinet/ipfw/dn_sched.h>
43#include <netpfil/ipfw/dn_heap.h>
44#include <netpfil/ipfw/ip_dn_private.h>
45#include <netpfil/ipfw/dn_sched.h>
46#else
47#include <dn_test.h>
48#endif
49
50/*
51 * This file implements a FIFO scheduler for a single queue.
52 * The queue is allocated as part of the scheduler instance,
53 * and there is a single flowset is in the template which stores

--- 67 unchanged lines hidden ---
46#else
47#include <dn_test.h>
48#endif
49
50/*
51 * This file implements a FIFO scheduler for a single queue.
52 * The queue is allocated as part of the scheduler instance,
53 * and there is a single flowset is in the template which stores

--- 67 unchanged lines hidden ---