mirror of
https://github.com/openvswitch/ovs
synced 2025-10-19 14:37:21 +00:00
Most necessary compatibility code is simply backported versions of kernel functions from newer kernels. These belong in the compat directory, where they can be transparently picked up when necessary. However, in some situations there is code that is different depending on the kernel version but is always needed in some form. Here it is desirable to segregate the code but it does not really belong in the compat directory because it does not exist in upstream kernels. This moves those functions to a compat file, which makes the meaning clear and prevents problems when Open vSwitch is integrated into other projects. Signed-off-by: Jesse Gross <jesse@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
40 lines
717 B
C
40 lines
717 B
C
/*
|
|
* Copyright (c) 2011 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/netlink.h>
|
|
|
|
#ifndef HAVE_NLA_NUL_STRING
|
|
static inline int CHECK_NUL_STRING(struct nlattr *attr, int maxlen)
|
|
{
|
|
char *s;
|
|
int len;
|
|
if (!attr)
|
|
return 0;
|
|
|
|
len = nla_len(attr);
|
|
if (len >= maxlen)
|
|
return -EINVAL;
|
|
|
|
s = nla_data(attr);
|
|
if (s[len - 1] != '\0')
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
}
|
|
#else
|
|
static inline int CHECK_NUL_STRING(struct nlattr *attr, int maxlen)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif /* !HAVE_NLA_NUL_STRING */
|
|
|
|
#endif /* compat.h */
|