]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
dtrace: Updated NEWS and spec file
authorKris Van Hees <kris.van.hees@oracle.com>
Wed, 6 Nov 2013 21:39:07 +0000 (16:39 -0500)
committerKris Van Hees <kris.van.hees@oracle.com>
Wed, 6 Nov 2013 21:40:46 +0000 (16:40 -0500)
Signed-off-by: Kris Van Hees <kris.van.hees@oracle.com>
dtrace/NEWS
dtrace/dtrace-module.spec

index 953dc34d4d6908478bba97cff226f7e3372123c4..4d7faa0b999b8c6f59440347dd3473111842a58b 100644 (file)
@@ -1,9 +1,9 @@
 DTrace Kernel Modules News
 ==========================
 
-Release 0.4.1 (Oct 23, 2013)
-----------------------------
-Kernel release: 3.8.13-18.el6uek
+Release 0.4.1 (Nov 6, 2013)
+---------------------------
+Kernel release: 3.8.13-16.2.1.el6uek
 
 Changes:
 
@@ -17,12 +17,15 @@ Changes:
 
 Bugfixes:
 
- - Lock ordering problem that were inherited from the original code are fixed.
+ - Lock ordering problems that were inherited from the original code are fixed.
  - Userspace stack memory accesses are now performed in a safe manner.
  - A race condition between speculative tracing buffer cleaning and destroying
    consumer state has been resolved.
  - A memory leak related to consumer state has been fixed.
  - A provider reference counter calculation problem was resolved.
+ - The 'errno' D variable now holds the correct value during syscall:::return
+   probe action execution, i.e. 0 if the syscall completed without an error,
+   and a valid error code if the syscall failed.
 
 Release 0.4.0 (Sep 20, 2013)
 ----------------------------
index 5f9a9d3242d2233e8228f0b5e50e3c278364e503..aff2860f13d599379d043cad7997d6e2f9e1bc79 100644 (file)
@@ -10,7 +10,7 @@
 %define variant %{?build_variant:%{build_variant}}%{!?build_variant:-uek}
 
 # Set this to the version of the kernel this module is compiled against.
-%define kver %{?build_kver:{build_kver}}%{!?build_kver:3.8.13-18.el6uek.dtrace2}
+%define kver %{?build_kver:{build_kver}}%{!?build_kver:3.8.13-16.2.1.el6uek}
 
 # Increment this whenever the DTrace/userspace interface changes in an
 # incompatible way.
@@ -100,11 +100,13 @@ rm -rf %{buildroot}
 /usr/include/linux/dtrace/types.h
 
 %changelog
-* Wed Oct 16 2013 Kris Van Hees <kris.van.hees@oracle.com> - 0.4.1-2
+* Wed Nov  6 2013 Kris Van Hees <kris.van.hees@oracle.com> - 0.4.1-2
 - Fix lock ordering issues.
   [Orabug: 17624236]
+- Fix 'errno' implementation.
+  [Orabug: 17704568]
 * Wed Oct 16 2013 Kris Van Hees <kris.van.hees@oracle.com> - 0.4.1-1
-- Align with new cyclic implementation in UEK3 3.8.13-18 kernel.
+- Align with new cyclic implementation in UEK3 kernel.
   [Orabug: 17553446]
 - Bugfix for module reference counting.
 - Fix memory leak.