mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
8c6f6fa677
Add Generic Netlink commands to allow userspace to configure IOAM namespaces and schemas. The target is iproute2 and the patch is ready. It will be posted as soon as this patchset is merged. Here is an overview: $ ip ioam Usage: ip ioam { COMMAND | help } ip ioam namespace show ip ioam namespace add ID [ data DATA32 ] [ wide DATA64 ] ip ioam namespace del ID ip ioam schema show ip ioam schema add ID DATA ip ioam schema del ID ip ioam namespace set ID schema { ID | none } Signed-off-by: Justin Iurman <justin.iurman@uliege.be> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
266 B
C
13 lines
266 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* IPv6 IOAM Generic Netlink API
|
|
*
|
|
* Author:
|
|
* Justin Iurman <justin.iurman@uliege.be>
|
|
*/
|
|
#ifndef _LINUX_IOAM6_GENL_H
|
|
#define _LINUX_IOAM6_GENL_H
|
|
|
|
#include <uapi/linux/ioam6_genl.h>
|
|
|
|
#endif /* _LINUX_IOAM6_GENL_H */
|