pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for ReactOS clang warning fixes, debugger attach+misc, 2025-01-31
Posted by Anonymous on Fri 31st Jan 2025 15:49
raw | new post

  1. From db214ce35f0578424ef117057a23e65f27d497cc Mon Sep 17 00:00:00 2001
  2. From: Dan Shelton <dan.f.shelton@gmail.com>
  3. Date: Fri, 31 Jan 2025 13:35:58 +0100
  4. Subject: [PATCH 1/5] daemon: Fix clang "warning : 'extern' variable has an
  5.  initializer" warning
  6.  
  7. Fix clang "warning : 'extern' variable has an initializer" warning.
  8.  
  9. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  10. ---
  11. daemon/daemon_debug.c | 2 +-
  12.  1 file changed, 1 insertion(+), 1 deletion(-)
  13.  
  14. diff --git a/daemon/daemon_debug.c b/daemon/daemon_debug.c
  15. index cb56e92..03eeda7 100644
  16. --- a/daemon/daemon_debug.c
  17. +++ b/daemon/daemon_debug.c
  18. @@ -35,7 +35,7 @@
  19.  #include "rpc/auth_sspi.h"
  20.  #include "accesstoken.h"
  21.  
  22. -extern int g_debug_level = DEFAULT_DEBUG_LEVEL;
  23. +int g_debug_level = DEFAULT_DEBUG_LEVEL;
  24.  
  25.  void set_debug_level(int level) { g_debug_level = level; }
  26.  
  27. --
  28. 2.45.1
  29.  
  30. From 3fd2eac909fafae5140af3655e2c219b7dedbf90 Mon Sep 17 00:00:00 2001
  31. From: Dan Shelton <dan.f.shelton@gmail.com>
  32. Date: Fri, 31 Jan 2025 13:56:53 +0100
  33. Subject: [PATCH 2/5] daemon: Fix clang "warning : passing 'char **' to
  34.  parameter of type 'const char **' discards qualifiers in nested pointer
  35.  types"
  36.  
  37. Fix clang "warning : passing 'char **' to parameter of type
  38. 'const char **' discards qualifiers in nested pointer types".
  39.  
  40. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  41. ---
  42. daemon/symlink.c | 7 ++++++-
  43.  1 file changed, 6 insertions(+), 1 deletion(-)
  44.  
  45. diff --git a/daemon/symlink.c b/daemon/symlink.c
  46. index 357a009..268e987 100644
  47. --- a/daemon/symlink.c
  48. +++ b/daemon/symlink.c
  49. @@ -198,7 +198,12 @@ static int parse_symlink(unsigned char *buffer, uint32_t length, nfs41_upcall *u
  50.      if (status) goto out;
  51.  
  52.      if (args->set)
  53. -        status = get_name(&buffer, &length, &args->target_set);
  54. +        /*
  55. +         * args->target_set is not const because handle_symlink() might
  56. +         * have to replace '\\' with '/'
  57. +         */
  58. +        status = get_name(&buffer, &length,
  59. +            (const char **)(&args->target_set));
  60.      else
  61.          args->target_set = NULL;
  62.  
  63. --
  64. 2.45.1
  65.  
  66. From a642b6b6ac4ea401422d906d34ba073a8cf6b9d4 Mon Sep 17 00:00:00 2001
  67. From: Dan Shelton <dan.f.shelton@gmail.com>
  68. Date: Fri, 31 Jan 2025 14:02:41 +0100
  69. Subject: [PATCH 3/5] daemon: Fix clang "warning : using the result of an
  70.  assignment as a condition without parentheses"
  71.  
  72. Fix clang "warning : using the result of an assignment as a condition
  73. without parentheses".
  74.  
  75. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  76. ---
  77. daemon/delegation.c | 2 +-
  78.  1 file changed, 1 insertion(+), 1 deletion(-)
  79.  
  80. diff --git a/daemon/delegation.c b/daemon/delegation.c
  81. index 22f1009..7401bc4 100644
  82. --- a/daemon/delegation.c
  83. +++ b/daemon/delegation.c
  84. @@ -299,7 +299,7 @@ static int delegation_return(
  85.  out_downcall:
  86.  
  87.      /* recover opens and locks associated with the delegation */
  88. -    while (open = deleg_open_find(&client->state, deleg)) {
  89. +    while ((open = deleg_open_find(&client->state, deleg)) != NULL) {
  90.          status = nfs41_delegation_to_open(open, try_recovery);
  91.          if (status == NFS4_OK)
  92.              status = delegation_flush_locks(open, try_recovery);
  93. --
  94. 2.45.1
  95.  
  96. From 0f50910772da3ac0fd767943ff76c4467f600173 Mon Sep 17 00:00:00 2001
  97. From: Roland Mainz <roland.mainz@nrubsig.org>
  98. Date: Fri, 31 Jan 2025 15:41:14 +0100
  99. Subject: [PATCH 4/5] tests: nfsbuildtest "bash build" subcmd should use -j16
  100.  
  101. nfsbuildtest.ksh93 subcmd "bash build" should use -j16
  102.  
  103. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  104. ---
  105. tests/nfsbuildtest/nfsbuildtest.ksh93 | 8 ++++----
  106.  1 file changed, 4 insertions(+), 4 deletions(-)
  107.  
  108. diff --git a/tests/nfsbuildtest/nfsbuildtest.ksh93 b/tests/nfsbuildtest/nfsbuildtest.ksh93
  109. index e86a1f1..3f3e653 100644
  110. --- a/tests/nfsbuildtest/nfsbuildtest.ksh93
  111. +++ b/tests/nfsbuildtest/nfsbuildtest.ksh93
  112. @@ -331,15 +331,15 @@ function bash_build
  113.         #
  114.         if $config_use_posix_ksh93_builtins ; then
  115.                 if is_cygwin && (( (cygwin_vers.major*1000+cygwin_vers.minor) >= 3005 )) ; then
  116. -                       time ksh93 -c 'export SHELL=/bin/ksh93 ; bmake -j8 install DESTDIR=$PWD/install_root'
  117. +                       time ksh93 -c 'export SHELL=/bin/ksh93 ; bmake -j16 install DESTDIR=$PWD/install_root'
  118.                 else
  119. -                       time ksh93 -c 'export SHELL=/bin/ksh93 ; make -j8 install DESTDIR=$PWD/install_root'
  120. +                       time ksh93 -c 'export SHELL=/bin/ksh93 ; make -j16 install DESTDIR=$PWD/install_root'
  121.                 fi
  122.         else
  123.                 if is_cygwin && (( (cygwin_vers.major*1000+cygwin_vers.minor) >= 3005 )) ; then
  124. -                       time bash -c 'export SHELL=/bin/bash ; bmake -j8 install DESTDIR=$PWD/install_root'
  125. +                       time bash -c 'export SHELL=/bin/bash ; bmake -j16 install DESTDIR=$PWD/install_root'
  126.                 else
  127. -                       time bash -c 'export SHELL=/bin/bash ; make -j8 install DESTDIR=$PWD/install_root'
  128. +                       time bash -c 'export SHELL=/bin/bash ; make -j16 install DESTDIR=$PWD/install_root'
  129.                 fi
  130.         fi
  131.         echo $?
  132. --
  133. 2.45.1
  134.  
  135. From ea17e7dbfba0a885c85d72f32c13c23810882791 Mon Sep 17 00:00:00 2001
  136. From: Roland Mainz <roland.mainz@nrubsig.org>
  137. Date: Fri, 31 Jan 2025 16:20:31 +0100
  138. Subject: [PATCH 5/5] cygwin: msnfs41client: Add "attach_debugger_to_daemon"
  139.  subcmd
  140.  
  141. Add a "attach_debugger_to_daemon" subcmd to msnfs41client.bash
  142. for attaching a debugger (WinDBG's cdb) to a running nfsd.exe
  143.  
  144. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  145. ---
  146. cygwin/devel/msnfs41client.bash | 32 ++++++++++++++++++++++++++++++++
  147.  1 file changed, 32 insertions(+)
  148.  
  149. diff --git a/cygwin/devel/msnfs41client.bash b/cygwin/devel/msnfs41client.bash
  150. index 92171fd..a46e7f7 100755
  151. --- a/cygwin/devel/msnfs41client.bash
  152. +++ b/cygwin/devel/msnfs41client.bash
  153. @@ -651,6 +651,25 @@ function nfsclient_system_rundeamon
  154.         return $?
  155.  }
  156.  
  157. +function attach_debugger_to_daemon
  158. +{
  159. +       set -o nounset
  160. +       set -o xtrace
  161. +       set -o errexit
  162. +
  163. +       typeset nfsd_winpid
  164. +       typeset dummy
  165. +
  166. +       export NT_ALT_SYMBOL_PATH="$(cygpath -w "$PWD");srv*https://msdl.microsoft.com/download/symbols"
  167. +
  168. +       # Get Windows pid of nfsd.exe
  169. +       read dummy nfsd_winpid < <(tasklist /FI "IMAGENAME eq nfsd.exe" /FO list | fgrep 'PID:')
  170. +
  171. +       cdb '-c' '!gflag +soe;sxe -c "kp;gn" *;.lines -e;g' -p ${nfsd_winpid}
  172. +
  173. +       return $?
  174. +}
  175. +
  176.  function watch_kernel_debuglog
  177.  {
  178.         typeset dbgview_cmd
  179. @@ -946,6 +965,19 @@ function main
  180.                         return $?
  181.                         ;;
  182.                 # misc
  183. +               'attach_debugger_to_daemon')
  184. +                       check_machine_arch || (( numerr++ ))
  185. +                       require_cmd 'tasklist.exe' || (( numerr++ ))
  186. +                       require_cmd 'cdb.exe' || (( numerr++ ))
  187. +                       if ! is_windows_admin_account ; then
  188. +                               printf $"%s: %q requires Windows Adminstator permissions.\n" "$0" "$cmd"
  189. +                               (( numerr++ ))
  190. +                       fi
  191. +                       (( numerr > 0 )) && return 1
  192. +
  193. +                       attach_debugger_to_daemon
  194. +                       return $?
  195. +                       ;;
  196.                 'watch_kernel_debuglog')
  197.                         check_machine_arch || (( numerr++ ))
  198.                         case "$(uname -m)" in
  199. --
  200. 2.45.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