pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patch for more mount options, bigger name cache&testing, 2023-11-20
Posted by Anonymous on Mon 20th Nov 2023 17:41
raw | new post

  1. From 7d74fb25c36603a664c27a273f97c77f5c8f3100 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Mon, 20 Nov 2023 16:34:45 +0100
  4. Subject: [PATCH 1/4] mount, sys/nfs41_driver: Add rw, nowritethru, cache
  5.  mount options
  6.  
  7. Add { "rw", "nowritethru", "cache" } mount options to nfs_mount.exe and
  8. nfs41_driver.sys, so people can use this like in the traditional
  9. UNIX/Linux mount(1M).
  10.  
  11. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  12. ---
  13. mount/mount.c      |  4 ++++
  14.  sys/nfs41_driver.c | 23 ++++++++++++++++++-----
  15.  2 files changed, 22 insertions(+), 5 deletions(-)
  16.  
  17. diff --git a/mount/mount.c b/mount/mount.c
  18. index 23aea32..9bad01d 100644
  19. --- a/mount/mount.c
  20. +++ b/mount/mount.c
  21. @@ -3,6 +3,7 @@
  22.   *
  23.   * Olga Kornievskaia <aglo@umich.edu>
  24.   * Casey Bodley <cbodley@umich.edu>
  25. + * Roland Mainz <roland.mainz@nrubsig.org>
  26.   *
  27.   * This library is free software; you can redistribute it and/or modify it
  28.   * under the terms of the GNU Lesser General Public License as published by
  29. @@ -66,11 +67,14 @@ static VOID PrintUsage(LPTSTR pProcess)
  30.          TEXT("\t-o <comma-separated mount options>\n")
  31.          TEXT("* Mount options:\n")
  32.          TEXT("\tro\tmount as read-only\n")
  33. +        TEXT("\trw\tmount as read-write (default)\n")
  34.          TEXT("\tport=#\tTCP port to use (defaults to 2049)\n")
  35.          TEXT("\trsize=#\tread buffer size in bytes\n")
  36.          TEXT("\twsize=#\twrite buffer size in bytes\n")
  37.          TEXT("\tsec=sys:krb5:krb5i:krb5p\tspecify (gss) security flavor\n")
  38.          TEXT("\twritethru\tturns off rdbss caching for writes\n")
  39. +        TEXT("\tnowritethru\tturns on rdbss caching for writes (default)\n")
  40. +        TEXT("\tcache\tturns on rdbss caching (default)\n")
  41.          TEXT("\tnocache\tturns off rdbss caching\n")
  42.          TEXT("\ttimeout=#\tspecify upcall timeout value in seconds (default 120s)\n")
  43.          TEXT("* Hostname:\n")
  44. diff --git a/sys/nfs41_driver.c b/sys/nfs41_driver.c
  45. index 4831b17..7b8f2b9 100644
  46. --- a/sys/nfs41_driver.c
  47. +++ b/sys/nfs41_driver.c
  48. @@ -2687,6 +2687,7 @@ void nfs41_MountConfig_InitDefaults(
  49.  NTSTATUS nfs41_MountConfig_ParseBoolean(
  50.      IN PFILE_FULL_EA_INFORMATION Option,
  51.      IN PUNICODE_STRING usValue,
  52. +    IN BOOLEAN negate_val,
  53.      OUT PBOOLEAN Value)
  54.  {
  55.      NTSTATUS status = STATUS_SUCCESS;
  56. @@ -2694,9 +2695,9 @@ NTSTATUS nfs41_MountConfig_ParseBoolean(
  57.      /* if no value is specified, assume TRUE
  58.       * if a value is specified, it must be a '1' */
  59.      if (Option->EaValueLength == 0 || *usValue->Buffer == L'1')
  60. -        *Value = TRUE;
  61. +        *Value = negate_val?FALSE:TRUE;
  62.      else
  63. -        *Value = FALSE;
  64. +        *Value = negate_val?TRUE:FALSE;
  65.  
  66.      DbgP("    '%ls' -> '%wZ' -> %u\n",
  67.          (LPWSTR)Option->EaName, usValue, *Value);
  68. @@ -2753,15 +2754,27 @@ NTSTATUS nfs41_MountConfig_ParseOptions(
  69.  
  70.          if (wcsncmp(L"ro", Name, NameLen) == 0) {
  71.              status = nfs41_MountConfig_ParseBoolean(Option, &usValue,
  72. -                &Config->ReadOnly);
  73. +                FALSE, &Config->ReadOnly);
  74. +        } else if (wcsncmp(L"rw", Name, NameLen) == 0) {
  75. +            /* opposite of "ro", so negate */
  76. +            status = nfs41_MountConfig_ParseBoolean(Option, &usValue,
  77. +                TRUE, &Config->ReadOnly);
  78.          }
  79.          else if (wcsncmp(L"writethru", Name, NameLen) == 0) {
  80.              status = nfs41_MountConfig_ParseBoolean(Option, &usValue,
  81. -                &Config->write_thru);
  82. +                FALSE, &Config->write_thru);
  83. +        }
  84. +        else if (wcsncmp(L"nowritethru", Name, NameLen) == 0) {
  85. +            status = nfs41_MountConfig_ParseBoolean(Option, &usValue,
  86. +                TRUE, &Config->write_thru);
  87. +        }
  88. +        else if (wcsncmp(L"cache", Name, NameLen) == 0) {
  89. +            status = nfs41_MountConfig_ParseBoolean(Option, &usValue,
  90. +                TRUE, &Config->nocache);
  91.          }
  92.          else if (wcsncmp(L"nocache", Name, NameLen) == 0) {
  93.              status = nfs41_MountConfig_ParseBoolean(Option, &usValue,
  94. -                &Config->nocache);
  95. +                FALSE, &Config->nocache);
  96.          }
  97.          else if (wcsncmp(L"timeout", Name, NameLen) == 0) {
  98.              status = nfs41_MountConfig_ParseDword(Option, &usValue,
  99. --
  100. 2.42.1
  101.  
  102. From f2e6958c553eaf3e3f467592f64da94ee98375b3 Mon Sep 17 00:00:00 2001
  103. From: Roland Mainz <roland.mainz@nrubsig.org>
  104. Date: Mon, 20 Nov 2023 16:41:09 +0100
  105. Subject: [PATCH 2/4] daemon: Increase name cache size from 256K to 8M
  106.  
  107. daemon: Increase name cache size from 256K to 8M to fix.
  108. This should fix performance issues with slow git clone and
  109. /usr/bin/find caused by name cache thrashing.
  110.  
  111. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  112. ---
  113. daemon/name_cache.c | 4 ++--
  114.  1 file changed, 2 insertions(+), 2 deletions(-)
  115.  
  116. diff --git a/daemon/name_cache.c b/daemon/name_cache.c
  117. index 99ea6b1..c607735 100644
  118. --- a/daemon/name_cache.c
  119. +++ b/daemon/name_cache.c
  120. @@ -40,8 +40,8 @@ enum {
  121.  
  122.  #define NAME_CACHE_EXPIRATION 20 /* TODO: get from configuration */
  123.  
  124. -/* allow up to 256K of memory for name and attribute cache entries */
  125. -#define NAME_CACHE_MAX_SIZE 262144
  126. +/* allow up to 8M of memory for name and attribute cache entries */
  127. +#define NAME_CACHE_MAX_SIZE (8*1024*1024L)
  128.  
  129.  /* negative lookup caching
  130.   *
  131. --
  132. 2.42.1
  133.  
  134. From 2fea1529dac005112a5f20acc0ed3181fec3daa5 Mon Sep 17 00:00:00 2001
  135. From: Roland Mainz <roland.mainz@nrubsig.org>
  136. Date: Mon, 20 Nov 2023 16:46:02 +0100
  137. Subject: [PATCH 3/4] tests/manual_testing.txt: Add gcc cp -p/ln -s workarounds
  138.  
  139. Add gcc cp -p/ln -s workarounds for configure/Makefile, currently
  140. needed by gcc
  141.  
  142. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  143. ---
  144. tests/manual_testing.txt | 4 ++++
  145.  1 file changed, 4 insertions(+)
  146.  
  147. diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
  148. index 07ffcf2..5f4b74a 100644
  149. --- a/tests/manual_testing.txt
  150. +++ b/tests/manual_testing.txt
  151. @@ -62,7 +62,11 @@ MSBuild.exe build.vc19/nfs41-client.sln -t:Build  -p:Configuration=Release -p:Pl
  152.  #
  153.  git clone -b 'releases/gcc-13.2.0' git://gcc.gnu.org/git/gcc.git
  154.  cd gcc/
  155. +# Cygwin: workaround for configure using cp -p where ln -s should be used
  156. +sed -i "s/as_ln_s='cp -pR'/as_ln_s='ln -s'/g" configure
  157.  ./configure
  158. +# workaround for $ cp -p # failing with "Function not implemented"
  159. +(set -o xtrace ; sed -i -r 's/(cp.*)([[:space:]]+-p[[:space:]]+)/\2--no-preserve=ownership /g' $(find . -name Makefile) )
  160.  # repeat:
  161.  make -j4 clean
  162.  (yes | make -j32 all)
  163. --
  164. 2.42.1
  165.  
  166. From 6ea1ef354fa5a499eebdf3b70d3010a995669a28 Mon Sep 17 00:00:00 2001
  167. From: Roland Mainz <roland.mainz@nrubsig.org>
  168. Date: Mon, 20 Nov 2023 16:53:53 +0100
  169. Subject: [PATCH 4/4] msnfs41client.bash: Enable line numbers for WinDBG cdb
  170.  
  171. Enable line numbers for WinDBG's "cdb" mode in
  172. cygwin/devel/msnfs41client.bash
  173.  
  174. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  175. ---
  176. cygwin/devel/msnfs41client.bash | 14 +++++++++++---
  177.  1 file changed, 11 insertions(+), 3 deletions(-)
  178.  
  179. diff --git a/cygwin/devel/msnfs41client.bash b/cygwin/devel/msnfs41client.bash
  180. index 9677663..478f7f6 100644
  181. --- a/cygwin/devel/msnfs41client.bash
  182. +++ b/cygwin/devel/msnfs41client.bash
  183. @@ -2,7 +2,7 @@
  184.  
  185.  #
  186.  # msnfs41client.bash - simple Cygwin frontent for the msnfsv41
  187. -# NFSv4.1 filesystem driver
  188. +# NFSv4.1 filesystem driver development
  189.  #
  190.  
  191.  #
  192. @@ -129,6 +129,10 @@ function nfsclient_rundeamon
  193.         # gdb: bt   cdb: kp
  194.         # gdb: quit cdb: q
  195.         #
  196. +       # other useful commands:
  197. +       # .lines -e     # enable source code line numbers
  198. +       # ~*kp          # print stack traces of all threads
  199. +       #
  200.  
  201.         if false ; then
  202.                 nfsd_args=(
  203. @@ -143,7 +147,7 @@ function nfsclient_rundeamon
  204.                 # use '!gflag +full;g' for heap tests, eats lots of memory
  205.                 nfsd_args=(
  206.                         'cdb'
  207. -                       '-c' '!gflag +soe;sxe -c "kp;gn" *;g'
  208. +                       '-c' '!gflag +soe;sxe -c "kp;gn" *;.lines -e;g'
  209.                         "$(cygpath -w "$PWD/${nfsd_args[0]}")"
  210.                         "${nfsd_args[@]:1}"
  211.                 )
  212. @@ -205,6 +209,10 @@ function nfsclient_system_rundeamon
  213.         # gdb: bt   cdb: kp
  214.         # gdb: quit cdb: q
  215.         #
  216. +       # other useful commands:
  217. +       # .lines -e     # enable source code line numbers
  218. +       # ~*kp          # print stack traces of all threads
  219. +       #
  220.  
  221.         if false ; then
  222.                 nfsd_args=(
  223. @@ -219,7 +227,7 @@ function nfsclient_system_rundeamon
  224.                 # use '!gflag +full;g' for heap tests, eats lots of memory
  225.                 nfsd_args=(
  226.                         'cdb'
  227. -                       '-c' '!gflag +soe;sxe -c "kp;gn" *;g'
  228. +                       '-c' '!gflag +soe;sxe -c "kp;gn" *;.lines -e;g'
  229.                         "$(cygpath -w "$PWD/${nfsd_args[0]}")"
  230.                         "${nfsd_args[@]:1}"
  231.                 )
  232. --
  233. 2.42.1

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.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at