pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patches for more precise file timestamps+sys debugging+misc, 2024-10-16
Posted by Anonymous on Wed 16th Oct 2024 11:07
raw | new post

  1. From 1009f0f891cdaa7d6da0d855328ce6364c69215e Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Wed, 16 Oct 2024 11:21:55 +0200
  4. Subject: [PATCH 1/3] daemon,libtirpc: Switch to
  5.  |GetSystemTimePreciseAsFileTime()| for more precise timestamps
  6.  
  7. Switch to |GetSystemTimePreciseAsFileTime()| for more precise (file)
  8. timestamps.
  9.  
  10. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  11. ---
  12. daemon/util.c               | 2 +-
  13.  libtirpc/src/gettimeofday.c | 2 +-
  14.  2 files changed, 2 insertions(+), 2 deletions(-)
  15.  
  16. diff --git a/daemon/util.c b/daemon/util.c
  17. index 3da52f1..fd7ebbd 100644
  18. --- a/daemon/util.c
  19. +++ b/daemon/util.c
  20. @@ -301,7 +301,7 @@ void nfs41_file_info_cpy(
  21.  void get_file_time(
  22.      OUT PLARGE_INTEGER file_time)
  23.  {
  24. -    GetSystemTimeAsFileTime((LPFILETIME)file_time);
  25. +    GetSystemTimePreciseAsFileTime((LPFILETIME)file_time);
  26.  }
  27.  
  28.  void get_nfs_time(
  29. diff --git a/libtirpc/src/gettimeofday.c b/libtirpc/src/gettimeofday.c
  30. index ff12dda..6dff414 100644
  31. --- a/libtirpc/src/gettimeofday.c
  32. +++ b/libtirpc/src/gettimeofday.c
  33. @@ -16,7 +16,7 @@ int gettimeofday(struct timeval *tv, struct timezone *tz)
  34.  
  35.    if (NULL != tv)
  36.    {
  37. -    GetSystemTimeAsFileTime(&ft);
  38. +    GetSystemTimePreciseAsFileTime(&ft);
  39.  
  40.      tmpres |= ft.dwHighDateTime;
  41.      tmpres <<= 32;
  42. --
  43. 2.45.1
  44.  
  45. From 85f9d07bc1c4850d01440871d9f4baa3a1ebffc1 Mon Sep 17 00:00:00 2001
  46. From: Dan Shelton <dan.f.shelton@gmail.com>
  47. Date: Wed, 16 Oct 2024 11:26:09 +0200
  48. Subject: [PATCH 2/3] sys: map_query_acl_error() should use (long), not (long
  49.  long), for %lx
  50.  
  51. map_query_acl_error() should use (long), not (long long), for %lx
  52.  
  53. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  54. ---
  55. sys/nfs41sys_acl.c | 2 +-
  56.  1 file changed, 1 insertion(+), 1 deletion(-)
  57.  
  58. diff --git a/sys/nfs41sys_acl.c b/sys/nfs41sys_acl.c
  59. index 1ad4c77..55c5789 100644
  60. --- a/sys/nfs41sys_acl.c
  61. +++ b/sys/nfs41sys_acl.c
  62. @@ -174,7 +174,7 @@ NTSTATUS map_query_acl_error(
  63.          print_error("map_query_acl_error: "
  64.              "failed to map windows ERROR_0x%lx to NTSTATUS; "
  65.              "defaulting to STATUS_INVALID_NETWORK_RESPONSE\n",
  66. -            (long long)error);
  67. +            (long)error);
  68.      case ERROR_BAD_NET_RESP:        return STATUS_INVALID_NETWORK_RESPONSE;
  69.      }
  70.  }
  71. --
  72. 2.45.1
  73.  
  74. From 0379e6c3feff024e8bef4b4275e67b8dd1ae0702 Mon Sep 17 00:00:00 2001
  75. From: Roland Mainz <roland.mainz@nrubsig.org>
  76. Date: Wed, 16 Oct 2024 11:58:28 +0200
  77. Subject: [PATCH 3/3] tests: Increase nfsbuildtest gcc build from -j8 to -j12
  78.  
  79. Increase nfsbuildtest gcc build from -j8 to -j12 for better
  80. parallel testing.
  81.  
  82. This should really be calculated based on the number of active
  83. CPUs and available memory, but for now we stick with a fixed
  84. value to be able to compare the perf values&build times across runs.
  85.  
  86. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  87. ---
  88. tests/nfsbuildtest/nfsbuildtest.ksh93 | 2 +-
  89.  1 file changed, 1 insertion(+), 1 deletion(-)
  90.  
  91. diff --git a/tests/nfsbuildtest/nfsbuildtest.ksh93 b/tests/nfsbuildtest/nfsbuildtest.ksh93
  92. index 96399b3..e5cb613 100644
  93. --- a/tests/nfsbuildtest/nfsbuildtest.ksh93
  94. +++ b/tests/nfsbuildtest/nfsbuildtest.ksh93
  95. @@ -155,7 +155,7 @@ function gcc_build
  96.         #
  97.         # build gcc
  98.         #
  99. -       time ksh93 -c 'export SHELL=/bin/ksh93 ; (yes | make --load-average 32 -j8 all)'
  100. +       time ksh93 -c 'export SHELL=/bin/ksh93 ; (yes | make --load-average 32 -j12 all)'
  101.         echo $?
  102.  
  103.         echo "#Done."
  104. --
  105. 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