mirror of
https://github.com/openvswitch/ovs
synced 2025-10-17 14:28:02 +00:00
26 lines
421 B
C
26 lines
421 B
C
/*
|
|
* Copyright (c) 2009 Nicira Networks.
|
|
* Distributed under the terms of the GNU GPL version 2.
|
|
*
|
|
* Significant portions of this file may be copied from parts of the Linux
|
|
* kernel, by Linus Torvalds and others.
|
|
*/
|
|
|
|
#ifndef COMPAT_H
|
|
#define COMPAT_H 1
|
|
|
|
#include <linux/version.h>
|
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
|
|
|
|
#include "compat26.h"
|
|
|
|
#else
|
|
|
|
#include "compat24.h"
|
|
|
|
#endif
|
|
|
|
|
|
#endif /* compat.h */
|