Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

xdrgen: Add a utility for extracting XDR from RFCs

For convenience, copy the XDR extraction script from RFC

Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

+12
+1
MAINTAINERS
··· 12367 12367 F: include/uapi/linux/nfsd/ 12368 12368 F: include/uapi/linux/sunrpc/ 12369 12369 F: net/sunrpc/ 12370 + F: tools/net/sunrpc/ 12370 12371 12371 12372 KERNEL PACMAN PACKAGING (in addition to generic KERNEL BUILD) 12372 12373 M: Thomas Weißschuh <linux@weissschuh.net>
+11
tools/net/sunrpc/extract.sh
··· 1 + #! /bin/sh 2 + # SPDX-License-Identifier: GPL-2.0 3 + # 4 + # Extract an RPC protocol specification from an RFC document. 5 + # The version of this script comes from RFC 8166. 6 + # 7 + # Usage: 8 + # $ extract.sh < rfcNNNN.txt > protocol.x 9 + # 10 + 11 + grep '^ *///' | sed 's?^ */// ??' | sed 's?^ *///$??'