aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/samba36/patches/220-remove_services.patch
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2019-08-31 18:50:48 -0700
committerStijn Tintel <stijn@linux-ipv6.be>2020-05-08 03:32:52 +0300
commit73fa1aba94f5cf566007ac18cee3ef08b3ae64bc (patch)
tree12d94da20915031cd34260409e6355c8e05b66b7 /package/network/services/samba36/patches/220-remove_services.patch
parent79da9d78b98e1cd4574a37e2c4c5f8315b91563d (diff)
downloadupstream-73fa1aba94f5cf566007ac18cee3ef08b3ae64bc.tar.gz
upstream-73fa1aba94f5cf566007ac18cee3ef08b3ae64bc.tar.bz2
upstream-73fa1aba94f5cf566007ac18cee3ef08b3ae64bc.zip
samba36: Remove
Samba 3.6 is completely unsupported, in addition to having tons of patches It also causes kernel panics on some platforms when sendfile is enabled. Example: https://github.com/gnubee-git/GnuBee_Docs/issues/45 I have reproduced on ramips as well as mvebu in the past. Samba 4 is an alternative available in the packages repo. cifsd is a lightweight alternative available in the packages repo. It is also a faster alternative to both Samba versions (lower CPU usage). It was renamed to ksmbd. To summarize, here are the alternatives: - ksmbd + luci-app-cifsd - samba4 + luci-app-samba4 Signed-off-by: Rosen Penev <rosenp@gmail.com> [drop samba36-server from GEMINI_NAS_PACKAGES, ksmbd rename + summary] Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'package/network/services/samba36/patches/220-remove_services.patch')
-rw-r--r--package/network/services/samba36/patches/220-remove_services.patch98
1 files changed, 0 insertions, 98 deletions
diff --git a/package/network/services/samba36/patches/220-remove_services.patch b/package/network/services/samba36/patches/220-remove_services.patch
deleted file mode 100644
index 498232dee2..0000000000
--- a/package/network/services/samba36/patches/220-remove_services.patch
+++ /dev/null
@@ -1,98 +0,0 @@
---- a/source3/librpc/rpc/rpc_common.c
-+++ b/source3/librpc/rpc/rpc_common.c
-@@ -131,6 +131,7 @@ static bool initialize_interfaces(void)
- if (!smb_register_ndr_interface(&ndr_table_initshutdown)) {
- return false;
- }
-+#ifdef EXTRA_SERVICES
- if (!smb_register_ndr_interface(&ndr_table_svcctl)) {
- return false;
- }
-@@ -140,6 +141,7 @@ static bool initialize_interfaces(void)
- if (!smb_register_ndr_interface(&ndr_table_ntsvcs)) {
- return false;
- }
-+#endif
- if (!smb_register_ndr_interface(&ndr_table_epmapper)) {
- return false;
- }
---- a/source3/rpc_server/rpc_ep_setup.c
-+++ b/source3/rpc_server/rpc_ep_setup.c
-@@ -697,6 +697,7 @@ static bool spoolss_shutdown_cb(void *pt
- return true;
- }
-
-+#ifdef EXTRA_SERVICES
- static bool svcctl_init_cb(void *ptr)
- {
- struct dcesrv_ep_context *ep_ctx =
-@@ -733,6 +734,7 @@ static bool svcctl_init_cb(void *ptr)
-
- return true;
- }
-+#endif
-
- static bool svcctl_shutdown_cb(void *ptr)
- {
-@@ -741,6 +743,8 @@ static bool svcctl_shutdown_cb(void *ptr
- return true;
- }
-
-+#ifdef EXTRA_SERVICES
-+
- static bool ntsvcs_init_cb(void *ptr)
- {
- struct dcesrv_ep_context *ep_ctx =
-@@ -802,6 +806,7 @@ static bool eventlog_init_cb(void *ptr)
-
- return true;
- }
-+#endif
-
- static bool initshutdown_init_cb(void *ptr)
- {
-@@ -1130,6 +1135,7 @@ bool dcesrv_ep_setup(struct tevent_conte
- }
- }
-
-+#ifdef EXTRA_SERVICES
- svcctl_cb.init = svcctl_init_cb;
- svcctl_cb.shutdown = svcctl_shutdown_cb;
- svcctl_cb.private_data = ep_ctx;
-@@ -1150,6 +1156,7 @@ bool dcesrv_ep_setup(struct tevent_conte
- if (!NT_STATUS_IS_OK(rpc_eventlog_init(&eventlog_cb))) {
- return false;
- }
-+#endif
-
- initshutdown_cb.init = initshutdown_init_cb;
- initshutdown_cb.shutdown = NULL;
---- a/source3/smbd/server_exit.c
-+++ b/source3/smbd/server_exit.c
-@@ -140,9 +140,11 @@ static void exit_server_common(enum serv
- #endif
- rpc_netdfs_shutdown();
- rpc_initshutdown_shutdown();
-+#ifdef EXTRA_SERVICES
- rpc_eventlog_shutdown();
-- rpc_ntsvcs_shutdown();
- rpc_svcctl_shutdown();
-+ rpc_ntsvcs_shutdown();
-+#endif
- #ifdef PRINTER_SUPPORT
- rpc_spoolss_shutdown();
- #endif
---- a/source3/rpcclient/rpcclient.c
-+++ b/source3/rpcclient/rpcclient.c
-@@ -637,9 +637,11 @@ static struct cmd_set *rpcclient_command
- shutdown_commands,
- test_commands,
- wkssvc_commands,
-+#ifdef EXTRA_SERVICES
- ntsvcs_commands,
- drsuapi_commands,
- eventlog_commands,
-+#endif
- winreg_commands,
- NULL
- };