~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/net/rxrpc/Kconfig

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /net/rxrpc/Kconfig (Version linux-6.12-rc7) and /net/rxrpc/Kconfig (Version linux-5.4.285)


  1 # SPDX-License-Identifier: GPL-2.0-only             1 # SPDX-License-Identifier: GPL-2.0-only
  2 #                                                   2 #
  3 # RxRPC session sockets                             3 # RxRPC session sockets
  4 #                                                   4 #
  5                                                     5 
  6 config AF_RXRPC                                     6 config AF_RXRPC
  7         tristate "RxRPC session sockets"            7         tristate "RxRPC session sockets"
  8         depends on INET                             8         depends on INET
  9         select CRYPTO                               9         select CRYPTO
 10         select KEYS                                10         select KEYS
 11         select NET_UDP_TUNNEL                  << 
 12         help                                       11         help
 13           Say Y or M here to include support f     12           Say Y or M here to include support for RxRPC session sockets (just
 14           the transport part, not the presenta     13           the transport part, not the presentation part: (un)marshalling is
 15           left to the application).                14           left to the application).
 16                                                    15 
 17           These are used for AFS kernel filesy     16           These are used for AFS kernel filesystem and userspace utilities.
 18                                                    17 
 19           This module at the moment only suppo     18           This module at the moment only supports client operations and is
 20           currently incomplete.                    19           currently incomplete.
 21                                                    20 
 22           See Documentation/networking/rxrpc.r !!  21           See Documentation/networking/rxrpc.txt.
 23                                                << 
 24 if AF_RXRPC                                    << 
 25                                                    22 
 26 config AF_RXRPC_IPV6                               23 config AF_RXRPC_IPV6
 27         bool "IPv6 support for RxRPC"              24         bool "IPv6 support for RxRPC"
 28         depends on (IPV6 = m && AF_RXRPC = m)      25         depends on (IPV6 = m && AF_RXRPC = m) || (IPV6 = y && AF_RXRPC)
 29         help                                       26         help
 30           Say Y here to allow AF_RXRPC to use      27           Say Y here to allow AF_RXRPC to use IPV6 UDP as well as IPV4 UDP as
 31           its network transport.                   28           its network transport.
 32                                                    29 
 33 config AF_RXRPC_INJECT_LOSS                        30 config AF_RXRPC_INJECT_LOSS
 34         bool "Inject packet loss into RxRPC pa     31         bool "Inject packet loss into RxRPC packet stream"
                                                   >>  32         depends on AF_RXRPC
 35         help                                       33         help
 36           Say Y here to inject packet loss by      34           Say Y here to inject packet loss by discarding some received and some
 37           transmitted packets.                     35           transmitted packets.
 38                                                    36 
 39 config AF_RXRPC_INJECT_RX_DELAY                << 
 40         bool "Inject delay into packet recepti << 
 41         depends on SYSCTL                      << 
 42         help                                   << 
 43           Say Y here to inject a delay into pa << 
 44           extended RTT time to be modelled.  T << 
 45           /proc/sys/net/rxrpc/rxrpc_inject_rx_ << 
 46           milliseconds up to 0.5s (note that t << 
 47           jiffies).                            << 
 48                                                    37 
 49 config AF_RXRPC_DEBUG                              38 config AF_RXRPC_DEBUG
 50         bool "RxRPC dynamic debugging"             39         bool "RxRPC dynamic debugging"
                                                   >>  40         depends on AF_RXRPC
 51         help                                       41         help
 52           Say Y here to make runtime controlla     42           Say Y here to make runtime controllable debugging messages appear.
 53                                                    43 
 54           See Documentation/networking/rxrpc.r !!  44           See Documentation/networking/rxrpc.txt.
 55                                                    45 
 56                                                    46 
 57 config RXKAD                                       47 config RXKAD
 58         bool "RxRPC Kerberos security"             48         bool "RxRPC Kerberos security"
                                                   >>  49         depends on AF_RXRPC
 59         select CRYPTO                              50         select CRYPTO
 60         select CRYPTO_MANAGER                      51         select CRYPTO_MANAGER
 61         select CRYPTO_SKCIPHER                 !!  52         select CRYPTO_BLKCIPHER
 62         select CRYPTO_PCBC                         53         select CRYPTO_PCBC
 63         select CRYPTO_FCRYPT                       54         select CRYPTO_FCRYPT
 64         help                                       55         help
 65           Provide kerberos 4 and AFS kaserver      56           Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
 66           through the use of the key retention     57           through the use of the key retention service.
 67                                                    58 
 68           See Documentation/networking/rxrpc.r !!  59           See Documentation/networking/rxrpc.txt.
 69                                                << 
 70 config RXPERF                                  << 
 71         tristate "RxRPC test service"          << 
 72         help                                   << 
 73           Provide an rxperf service tester.  T << 
 74           incoming calls from the rxperf progr << 
 75           found in OpenAFS).                   << 
 76                                                << 
 77 endif                                          << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php