We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb4f07f commit a32442fCopy full SHA for a32442f
MAINTAINERS
@@ -12367,6 +12367,7 @@ F: include/trace/misc/sunrpc.h
12367
F: include/uapi/linux/nfsd/
12368
F: include/uapi/linux/sunrpc/
12369
F: net/sunrpc/
12370
+F: tools/net/sunrpc/
12371
12372
KERNEL PACMAN PACKAGING (in addition to generic KERNEL BUILD)
12373
M: Thomas Weißschuh <[email protected]>
tools/net/sunrpc/extract.sh
@@ -0,0 +1,11 @@
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?^ *///$??'
0 commit comments