2011-11-02 00:32:40 +08:00
|
|
|
/**
|
|
|
|
* @file missing.h
|
|
|
|
* @note Copyright (C) 2011 Richard Cochran <richardcochran@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When glibc offers the syscall, this will go away.
|
|
|
|
*/
|
|
|
|
#ifndef HAVE_MISSING_H
|
|
|
|
#define HAVE_MISSING_H
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
#include <sys/timex.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2014-06-22 15:22:54 +08:00
|
|
|
#ifndef ADJ_TAI
|
|
|
|
#define ADJ_TAI 0x0080
|
|
|
|
#endif
|
|
|
|
|
2011-11-02 00:32:40 +08:00
|
|
|
#ifndef ADJ_NANO
|
|
|
|
#define ADJ_NANO 0x2000
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ADJ_SETOFFSET
|
|
|
|
#define ADJ_SETOFFSET 0x0100
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CLOCK_INVALID
|
|
|
|
#define CLOCK_INVALID -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define CLOCKFD 3
|
2018-03-28 09:26:54 +08:00
|
|
|
#define FD_TO_CLOCKID(fd) ((clockid_t) ((((unsigned int) ~fd) << 3) | CLOCKFD))
|
2011-11-02 00:32:40 +08:00
|
|
|
#define CLOCKID_TO_FD(clk) ((unsigned int) ~((clk) >> 3))
|
|
|
|
|
2013-09-04 08:19:30 +08:00
|
|
|
#ifndef HAVE_ONESTEP_SYNC
|
|
|
|
enum _missing_hwtstamp_tx_types {
|
|
|
|
HWTSTAMP_TX_ONESTEP_SYNC = 2,
|
2013-09-05 02:55:11 +08:00
|
|
|
};
|
2013-09-04 08:19:30 +08:00
|
|
|
#endif
|
|
|
|
|
2018-02-16 01:16:15 +08:00
|
|
|
#ifndef HAVE_ONESTEP_P2P
|
|
|
|
enum {
|
|
|
|
HWTSTAMP_TX_ONESTEP_P2P = 3,
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2018-04-01 02:05:57 +08:00
|
|
|
#ifndef LIST_FOREACH_SAFE
|
|
|
|
#define LIST_FOREACH_SAFE(var, head, field, tvar) \
|
|
|
|
for ((var) = LIST_FIRST((head)); \
|
|
|
|
(var) && ((tvar) = LIST_NEXT((var), field), 1); \
|
|
|
|
(var) = (tvar))
|
|
|
|
#endif
|
|
|
|
|
2014-05-28 01:34:35 +08:00
|
|
|
#ifndef SIOCGHWTSTAMP
|
|
|
|
#define SIOCGHWTSTAMP 0x89b1
|
|
|
|
#endif
|
|
|
|
|
2014-11-01 19:27:14 +08:00
|
|
|
#ifndef SO_SELECT_ERR_QUEUE
|
|
|
|
#define SO_SELECT_ERR_QUEUE 45
|
|
|
|
#endif
|
|
|
|
|
2012-09-05 23:00:30 +08:00
|
|
|
#ifndef HAVE_CLOCK_ADJTIME
|
2011-11-02 00:32:40 +08:00
|
|
|
static inline int clock_adjtime(clockid_t id, struct timex *tx)
|
|
|
|
{
|
|
|
|
return syscall(__NR_clock_adjtime, id, tx);
|
|
|
|
}
|
2012-09-05 23:00:30 +08:00
|
|
|
#endif
|
2011-11-02 00:32:40 +08:00
|
|
|
|
2017-10-09 22:31:42 +08:00
|
|
|
#ifndef IFLA_BOND_MAX
|
|
|
|
enum {
|
|
|
|
IFLA_BOND_UNSPEC,
|
|
|
|
IFLA_BOND_MODE,
|
|
|
|
IFLA_BOND_ACTIVE_SLAVE,
|
|
|
|
IFLA_BOND_MIIMON,
|
|
|
|
IFLA_BOND_UPDELAY,
|
|
|
|
IFLA_BOND_DOWNDELAY,
|
|
|
|
IFLA_BOND_USE_CARRIER,
|
|
|
|
IFLA_BOND_ARP_INTERVAL,
|
|
|
|
IFLA_BOND_ARP_IP_TARGET,
|
|
|
|
IFLA_BOND_ARP_VALIDATE,
|
|
|
|
IFLA_BOND_ARP_ALL_TARGETS,
|
|
|
|
IFLA_BOND_PRIMARY,
|
|
|
|
IFLA_BOND_PRIMARY_RESELECT,
|
|
|
|
IFLA_BOND_FAIL_OVER_MAC,
|
|
|
|
IFLA_BOND_XMIT_HASH_POLICY,
|
|
|
|
IFLA_BOND_RESEND_IGMP,
|
|
|
|
IFLA_BOND_NUM_PEER_NOTIF,
|
|
|
|
IFLA_BOND_ALL_SLAVES_ACTIVE,
|
|
|
|
IFLA_BOND_MIN_LINKS,
|
|
|
|
IFLA_BOND_LP_INTERVAL,
|
|
|
|
IFLA_BOND_PACKETS_PER_SLAVE,
|
|
|
|
IFLA_BOND_AD_LACP_RATE,
|
|
|
|
IFLA_BOND_AD_SELECT,
|
|
|
|
IFLA_BOND_AD_INFO,
|
|
|
|
IFLA_BOND_AD_ACTOR_SYS_PRIO,
|
|
|
|
IFLA_BOND_AD_USER_PORT_KEY,
|
|
|
|
IFLA_BOND_AD_ACTOR_SYSTEM,
|
|
|
|
IFLA_BOND_TLB_DYNAMIC_LB,
|
|
|
|
__IFLA_BOND_MAX,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
|
|
|
|
#endif /*IFLA_BOND_MAX*/
|
|
|
|
|
2017-05-30 14:42:27 +08:00
|
|
|
#ifdef __UCLIBC__
|
|
|
|
|
|
|
|
#if (_XOPEN_SOURCE >= 600 || _POSIX_C_SOURCE >= 200112L) && \
|
|
|
|
defined __UCLIBC_HAS_THREADS_NATIVE__
|
2012-02-20 01:25:21 +08:00
|
|
|
|
|
|
|
#include <sys/timerfd.h>
|
|
|
|
|
|
|
|
#else
|
2011-12-30 15:33:30 +08:00
|
|
|
|
2013-06-14 17:47:58 +08:00
|
|
|
static inline int clock_nanosleep(clockid_t clock_id, int flags,
|
|
|
|
const struct timespec *request,
|
|
|
|
struct timespec *remain)
|
|
|
|
{
|
|
|
|
return syscall(__NR_clock_nanosleep, clock_id, flags, request, remain);
|
|
|
|
}
|
|
|
|
|
2011-12-30 15:33:30 +08:00
|
|
|
static inline int timerfd_create(int clockid, int flags)
|
|
|
|
{
|
|
|
|
return syscall(__NR_timerfd_create, clockid, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int timerfd_settime(int fd, int flags,
|
|
|
|
const struct itimerspec *new_value,
|
|
|
|
struct itimerspec *old_value)
|
|
|
|
{
|
|
|
|
return syscall(__NR_timerfd_settime, fd, flags, new_value, old_value);
|
|
|
|
}
|
2017-05-30 14:42:27 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#else /*__UCLIBC__*/
|
|
|
|
|
|
|
|
#include <sys/timerfd.h>
|
2011-12-30 15:33:30 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-11-02 00:32:40 +08:00
|
|
|
#endif
|