mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
99bcd4a6e5
Commit111e7b15cf
("x86/ioperm: Extend IOPL config to control ioperm() as well") reworked the iopl syscall to use I/O bitmaps. Unfortunately this broke Xen PV domains using that syscall as there is currently no I/O bitmap support in PV domains. Add I/O bitmap support via a new paravirt function update_io_bitmap which Xen PV domains can use to update their I/O bitmaps via a hypercall. Fixes:111e7b15cf
("x86/ioperm: Extend IOPL config to control ioperm() as well") Reported-by: Jan Beulich <jbeulich@suse.com> Signed-off-by: Juergen Gross <jgross@suse.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Tested-by: Jan Beulich <jbeulich@suse.com> Reviewed-by: Jan Beulich <jbeulich@suse.com> Cc: <stable@vger.kernel.org> # 5.5 Link: https://lkml.kernel.org/r/20200218154712.25490-1-jgross@suse.com
37 lines
812 B
C
37 lines
812 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_X86_IOBITMAP_H
|
|
#define _ASM_X86_IOBITMAP_H
|
|
|
|
#include <linux/refcount.h>
|
|
#include <asm/processor.h>
|
|
|
|
struct io_bitmap {
|
|
u64 sequence;
|
|
refcount_t refcnt;
|
|
/* The maximum number of bytes to copy so all zero bits are covered */
|
|
unsigned int max;
|
|
unsigned long bitmap[IO_BITMAP_LONGS];
|
|
};
|
|
|
|
struct task_struct;
|
|
|
|
#ifdef CONFIG_X86_IOPL_IOPERM
|
|
void io_bitmap_share(struct task_struct *tsk);
|
|
void io_bitmap_exit(void);
|
|
|
|
void native_tss_update_io_bitmap(void);
|
|
|
|
#ifdef CONFIG_PARAVIRT_XXL
|
|
#include <asm/paravirt.h>
|
|
#else
|
|
#define tss_update_io_bitmap native_tss_update_io_bitmap
|
|
#endif
|
|
|
|
#else
|
|
static inline void io_bitmap_share(struct task_struct *tsk) { }
|
|
static inline void io_bitmap_exit(void) { }
|
|
static inline void tss_update_io_bitmap(void) { }
|
|
#endif
|
|
|
|
#endif
|