Blame SOURCES/rhbz2058908.patch

6e109e
commit aa27023c941f88da383e8f2eeec2a81312243e6e
6e109e
Author: Frank Ch. Eigler <fche@redhat.com>
6e109e
Date:   Fri Mar 11 10:29:55 2022 -0500
6e109e
6e109e
    sys/sdt.h: set x86-64 STAP_SDT_ASM_CONSTRAINT back to "nor"
6e109e
    
6e109e
    It turns out the kernel and some other sdt consumers haven't learned
6e109e
    how to use %xmm registers in sdt operands.  So under this duress, stap
6e109e
    will go back to the old school integer register set "nor" as a
6e109e
    default.  We'll revisit this in the future, though this egg might not
6e109e
    turn into a chicken.
6e109e
    
6e109e
    https://bugzilla.redhat.com/show_bug.cgi?id=2058908
6e109e
6e109e
diff --git a/includes/sys/sdt.h b/includes/sys/sdt.h
6e109e
index 48cb7263f..ca0162b4d 100644
6e109e
--- a/includes/sys/sdt.h
6e109e
+++ b/includes/sys/sdt.h
6e109e
@@ -100,8 +100,6 @@
6e109e
 # ifndef STAP_SDT_ARG_CONSTRAINT
6e109e
 # if defined __powerpc__
6e109e
 # define STAP_SDT_ARG_CONSTRAINT        nZr
6e109e
-# elif defined __x86_64__
6e109e
-# define STAP_SDT_ARG_CONSTRAINT norx
6e109e
 # else
6e109e
 # define STAP_SDT_ARG_CONSTRAINT        nor
6e109e
 # endif