Merge tag 'dt-for-palmer-v6.1-mw1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / net / sched / cls_rsvp.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * net/sched/cls_rsvp.c Special RSVP packet classifier for IPv4.
4 *
1da177e4
LT
5 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
6 */
7
8#include <linux/module.h>
1da177e4
LT
9#include <linux/types.h>
10#include <linux/kernel.h>
1da177e4 11#include <linux/string.h>
1da177e4 12#include <linux/errno.h>
1da177e4 13#include <linux/skbuff.h>
0ba48053 14#include <net/ip.h>
dc5fc579 15#include <net/netlink.h>
1da177e4
LT
16#include <net/act_api.h>
17#include <net/pkt_cls.h>
18
19#define RSVP_DST_LEN 1
20#define RSVP_ID "rsvp"
21#define RSVP_OPS cls_rsvp_ops
22
23#include "cls_rsvp.h"
24MODULE_LICENSE("GPL");