diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-08-22 16:50:17 +0300 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-08-22 16:50:17 +0300 |
| commit | b3d80535e213ad6584577b0f20d9d49ccf233206 (patch) | |
| tree | 462401951592f2041fac2a338a9085d600c2df06 /include/linux | |
| parent | 272aa18fea29f3299960b62e2c24efb049b540ea (diff) | |
| parent | efdaa61d73a1deb066ccc3b4d56257cc63ab5be9 (diff) | |
| download | linux-b3d80535e213ad6584577b0f20d9d49ccf233206.tar.xz | |
Merge tag 'for-linus-6.17-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
Pull xen fixes from Juergen Gross:
"Two small cleanups which are both relevant only when running as a Xen
guest"
* tag 'for-linus-6.17-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
drivers/xen/xenbus: remove quirk for Xen 3.x
compiler: remove __ADDRESSABLE_ASM{_STR,}() again
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/compiler.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/compiler.h b/include/linux/compiler.h index 6f04a1d8c720..64ff73c533e5 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h @@ -288,14 +288,6 @@ static inline void *offset_to_ptr(const int *off) #define __ADDRESSABLE(sym) \ ___ADDRESSABLE(sym, __section(".discard.addressable")) -#define __ADDRESSABLE_ASM(sym) \ - .pushsection .discard.addressable,"aw"; \ - .align ARCH_SEL(8,4); \ - ARCH_SEL(.quad, .long) __stringify(sym); \ - .popsection; - -#define __ADDRESSABLE_ASM_STR(sym) __stringify(__ADDRESSABLE_ASM(sym)) - /* * This returns a constant expression while determining if an argument is * a constant expression, most importantly without evaluating the argument. |
