]> git.proxmox.com Git - mirror_ovs.git/blame - datapath/compat.h
gre: Disable tx queue.
[mirror_ovs.git] / datapath / compat.h
CommitLineData
a14bc59f
BP
1/*
2 * Copyright (c) 2009 Nicira Networks.
3 * Distributed under the terms of the GNU GPL version 2.
4 *
5 * Significant portions of this file may be copied from parts of the Linux
6 * kernel, by Linus Torvalds and others.
7 */
8
064af421
BP
9#ifndef COMPAT_H
10#define COMPAT_H 1
11
12#include <linux/version.h>
13
14#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
15
16#include "compat26.h"
17
18#else
19
20#include "compat24.h"
21
22#endif
23
24
25#endif /* compat.h */