- From 44eaa6834874f47cd1438b37ea25c4129f261c1f Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 21 Sep 2024 15:31:09 +0200
- Subject: [PATCH 1/3] cygwin: msnfs41client: drmemory running as user "SYSTEM"
- cannot write to symcache
- drmemory running as user "SYSTEM" cannot write to symcache,
- so msnfs41client should just disable the cache with -no_use_symcache
- Reported-by: Cedric Blancher <cedric.blancher@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/devel/msnfs41client.bash | 4 ++++
- 1 file changed, 4 insertions(+)
- diff --git a/cygwin/devel/msnfs41client.bash b/cygwin/devel/msnfs41client.bash
- index 50efb21..054796e 100755
- --- a/cygwin/devel/msnfs41client.bash
- +++ b/cygwin/devel/msnfs41client.bash
- @@ -354,6 +354,8 @@ function nfsclient_rundeamon
- '-strict_bitops'
- '-gen_suppress_syms'
- '-preload_symbols'
- + # no symbol cache, user "SYSTEM" cannot write data to cache
- + '-no_use_symcache'
- '--'
- "${nfsd_args[@]}"
- '--crtdbgmem' 'none'
- @@ -472,6 +474,8 @@ function nfsclient_system_rundeamon
- '-strict_bitops'
- '-gen_suppress_syms'
- '-preload_symbols'
- + # no symbol cache, user "SYSTEM" cannot write data to cache
- + '-no_use_symcache'
- '--'
- "${nfsd_args[@]}"
- '--crtdbgmem' 'none'
- --
- 2.45.1
- From d87b2d443da22b0013040ae97bec175bfa5d058a Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 21 Sep 2024 15:34:31 +0200
- Subject: [PATCH 2/3] cygwin: msnfs41client should explicitly add drmemory to
- PATH
- msnfs41client should explicitly add drmemory's installation path
- to its PATH.
- Reported-by: Cedric Blancher <cedric.blancher@gmail.com>
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/devel/msnfs41client.bash | 3 +++
- 1 file changed, 3 insertions(+)
- diff --git a/cygwin/devel/msnfs41client.bash b/cygwin/devel/msnfs41client.bash
- index 054796e..14bbd9c 100755
- --- a/cygwin/devel/msnfs41client.bash
- +++ b/cygwin/devel/msnfs41client.bash
- @@ -685,6 +685,9 @@ function main
- vsdiagnostics_path='/cygdrive/c/Program Files (x86)/Microsoft Visual Studio/2019/Community/Team Tools/DiagnosticsHub/Collector/'
- PATH+=":${vsdiagnostics_path}"
- + # PATH to DrMemory
- + PATH+=':/cygdrive/c/Program Files (x86)/Dr. Memory/bin/'
- +
- # my own path to pstools
- PATH+=':/home/roland_mainz/work/win_pstools/'
- --
- 2.45.1
- From b72369d0f8ce03f39fcec1220de98ab8426db903 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Sat, 21 Sep 2024 15:46:54 +0200
- Subject: [PATCH 3/3] daemon: Increase default number of nfsd worker threads to
- 128.
- Increase default number of nfsd worker threads from 32 to 128.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- daemon/nfs41_daemon.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- diff --git a/daemon/nfs41_daemon.c b/daemon/nfs41_daemon.c
- index 414e18d..a902852 100644
- --- a/daemon/nfs41_daemon.c
- +++ b/daemon/nfs41_daemon.c
- @@ -44,7 +44,7 @@
- /* nfs41_dg.num_worker_threads sets the actual number of worker threads */
- #define MAX_NUM_THREADS 1024
- -#define DEFAULT_NUM_THREADS 32
- +#define DEFAULT_NUM_THREADS 128
- DWORD NFS41D_VERSION = 0;
- static const char FILE_NETCONFIG[] = "C:\\etc\\netconfig";
- --
- 2.45.1
msnfs41client: Patch for DrMemory support in msnfs41client+misc, 2024-09-21
Posted by Anonymous on Sat 21st Sep 2024 15:17
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.