mirror of
				https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux
				synced 2025-11-04 16:52:06 +10:00 
			
		
		
		
	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>
		
	
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			266 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 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 */
 |