treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / x86 / include / asm / io_bitmap.h
blob02c6ef8f7667725b2730e049a2a51d78caec650e
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_IOBITMAP_H
3 #define _ASM_X86_IOBITMAP_H
5 #include <linux/refcount.h>
6 #include <asm/processor.h>
8 struct io_bitmap {
9 u64 sequence;
10 refcount_t refcnt;
11 /* The maximum number of bytes to copy so all zero bits are covered */
12 unsigned int max;
13 unsigned long bitmap[IO_BITMAP_LONGS];
16 struct task_struct;
18 #ifdef CONFIG_X86_IOPL_IOPERM
19 void io_bitmap_share(struct task_struct *tsk);
20 void io_bitmap_exit(void);
22 void tss_update_io_bitmap(void);
23 #else
24 static inline void io_bitmap_share(struct task_struct *tsk) { }
25 static inline void io_bitmap_exit(void) { }
26 static inline void tss_update_io_bitmap(void) { }
27 #endif
29 #endif