mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
13 lines
292 B
C
13 lines
292 B
C
#ifndef __LINUX_RCULIST_WRAPPER_H
|
|
#define __LINUX_RCULIST_WRAPPER_H
|
|
|
|
#include <linux/version.h>
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26)
|
|
#include_next <linux/rculist.h>
|
|
#else
|
|
/* Prior to 2.6.26, the contents of rculist.h were part of list.h. */
|
|
#include <linux/list.h>
|
|
#endif
|
|
|
|
#endif
|