diff options
author | 2025-04-29 16:29:13 -0400 | |
---|---|---|
committer | 2025-04-30 09:26:34 -0500 | |
commit | 6f8b4788266c7df3b7cfc6c665f663b4c3d09aad (patch) | |
tree | 6f5958416d0b5aec9b63385d9d349793f8540fdc | |
parent | dlm: reject SCTP configuration if not enabled (diff) | |
download | wireguard-linux-6f8b4788266c7df3b7cfc6c665f663b4c3d09aad.tar.xz wireguard-linux-6f8b4788266c7df3b7cfc6c665f663b4c3d09aad.zip |
dlm: drop SCTP Kconfig dependency
DLM does not use any exported SCTP function. SCTP is registered
dynamically as protocol to the kernel and can be used over the right
protocol identifiers on the socket api. We drop the SCTP dependency as
DLM can also be used with TCP only.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Reviewed-by: Heming zhao <heming.zhao@suse.com>
Signed-off-by: David Teigland <teigland@redhat.com>
-rw-r--r-- | fs/dlm/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/dlm/Kconfig b/fs/dlm/Kconfig index f82a4952769d..b46165df5a91 100644 --- a/fs/dlm/Kconfig +++ b/fs/dlm/Kconfig @@ -3,7 +3,6 @@ menuconfig DLM tristate "Distributed Lock Manager (DLM)" depends on INET depends on SYSFS && CONFIGFS_FS && (IPV6 || IPV6=n) - select IP_SCTP help A general purpose distributed lock manager for kernel or userspace applications. |