-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150767 from Flakebi/rocm
- Loading branch information
Showing
14 changed files
with
205 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
...evelopment/compilers/llvm/rocm/compiler-rt/68d5235cb58f988c71b403334cd9482d663841ab.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
--- a/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc | ||
+++ b/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc | ||
@@ -370,15 +370,6 @@ | ||
|
||
#if SANITIZER_GLIBC | ||
// _(SIOCDEVPLIP, WRITE, struct_ifreq_sz); // the same as EQL_ENSLAVE | ||
- _(CYGETDEFTHRESH, WRITE, sizeof(int)); | ||
- _(CYGETDEFTIMEOUT, WRITE, sizeof(int)); | ||
- _(CYGETMON, WRITE, struct_cyclades_monitor_sz); | ||
- _(CYGETTHRESH, WRITE, sizeof(int)); | ||
- _(CYGETTIMEOUT, WRITE, sizeof(int)); | ||
- _(CYSETDEFTHRESH, NONE, 0); | ||
- _(CYSETDEFTIMEOUT, NONE, 0); | ||
- _(CYSETTHRESH, NONE, 0); | ||
- _(CYSETTIMEOUT, NONE, 0); | ||
_(EQL_EMANCIPATE, WRITE, struct_ifreq_sz); | ||
_(EQL_ENSLAVE, WRITE, struct_ifreq_sz); | ||
_(EQL_GETMASTRCFG, WRITE, struct_ifreq_sz); | ||
--- a/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp | ||
+++ b/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp | ||
@@ -143,7 +143,6 @@ | ||
# include <sys/procfs.h> | ||
#endif | ||
#include <sys/user.h> | ||
-#include <linux/cyclades.h> | ||
#include <linux/if_eql.h> | ||
#include <linux/if_plip.h> | ||
#include <linux/lp.h> | ||
@@ -460,7 +459,6 @@ | ||
|
||
#if SANITIZER_GLIBC | ||
unsigned struct_ax25_parms_struct_sz = sizeof(struct ax25_parms_struct); | ||
- unsigned struct_cyclades_monitor_sz = sizeof(struct cyclades_monitor); | ||
#if EV_VERSION > (0x010000) | ||
unsigned struct_input_keymap_entry_sz = sizeof(struct input_keymap_entry); | ||
#else | ||
@@ -824,15 +822,6 @@ | ||
#endif // SANITIZER_LINUX | ||
|
||
#if SANITIZER_LINUX && !SANITIZER_ANDROID | ||
- unsigned IOCTL_CYGETDEFTHRESH = CYGETDEFTHRESH; | ||
- unsigned IOCTL_CYGETDEFTIMEOUT = CYGETDEFTIMEOUT; | ||
- unsigned IOCTL_CYGETMON = CYGETMON; | ||
- unsigned IOCTL_CYGETTHRESH = CYGETTHRESH; | ||
- unsigned IOCTL_CYGETTIMEOUT = CYGETTIMEOUT; | ||
- unsigned IOCTL_CYSETDEFTHRESH = CYSETDEFTHRESH; | ||
- unsigned IOCTL_CYSETDEFTIMEOUT = CYSETDEFTIMEOUT; | ||
- unsigned IOCTL_CYSETTHRESH = CYSETTHRESH; | ||
- unsigned IOCTL_CYSETTIMEOUT = CYSETTIMEOUT; | ||
unsigned IOCTL_EQL_EMANCIPATE = EQL_EMANCIPATE; | ||
unsigned IOCTL_EQL_ENSLAVE = EQL_ENSLAVE; | ||
unsigned IOCTL_EQL_GETMASTRCFG = EQL_GETMASTRCFG; | ||
--- a/lib/sanitizer_common/sanitizer_platform_limits_posix.h | ||
+++ b/lib/sanitizer_common/sanitizer_platform_limits_posix.h | ||
@@ -983,7 +983,6 @@ | ||
|
||
#if SANITIZER_LINUX && !SANITIZER_ANDROID | ||
extern unsigned struct_ax25_parms_struct_sz; | ||
-extern unsigned struct_cyclades_monitor_sz; | ||
extern unsigned struct_input_keymap_entry_sz; | ||
extern unsigned struct_ipx_config_data_sz; | ||
extern unsigned struct_kbdiacrs_sz; | ||
@@ -1328,15 +1327,6 @@ | ||
#endif // SANITIZER_LINUX | ||
|
||
#if SANITIZER_LINUX && !SANITIZER_ANDROID | ||
-extern unsigned IOCTL_CYGETDEFTHRESH; | ||
-extern unsigned IOCTL_CYGETDEFTIMEOUT; | ||
-extern unsigned IOCTL_CYGETMON; | ||
-extern unsigned IOCTL_CYGETTHRESH; | ||
-extern unsigned IOCTL_CYGETTIMEOUT; | ||
-extern unsigned IOCTL_CYSETDEFTHRESH; | ||
-extern unsigned IOCTL_CYSETDEFTIMEOUT; | ||
-extern unsigned IOCTL_CYSETTHRESH; | ||
-extern unsigned IOCTL_CYSETTIMEOUT; | ||
extern unsigned IOCTL_EQL_EMANCIPATE; | ||
extern unsigned IOCTL_EQL_ENSLAVE; | ||
extern unsigned IOCTL_EQL_GETMASTRCFG; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.