~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/xen/interface/nmi.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/xen/interface/nmi.h (Version linux-6.11-rc3) and /include/xen/interface/nmi.h (Version linux-5.6.19)


  1 /* SPDX-License-Identifier: MIT */             !!   1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*********************************************      2 /******************************************************************************
  3  * nmi.h                                            3  * nmi.h
  4  *                                                  4  *
  5  * NMI callback registration and reason codes.      5  * NMI callback registration and reason codes.
  6  *                                                  6  *
  7  * Copyright (c) 2005, Keir Fraser <keir@xenso      7  * Copyright (c) 2005, Keir Fraser <keir@xensource.com>
  8  */                                                 8  */
  9                                                     9 
 10 #ifndef __XEN_PUBLIC_NMI_H__                       10 #ifndef __XEN_PUBLIC_NMI_H__
 11 #define __XEN_PUBLIC_NMI_H__                       11 #define __XEN_PUBLIC_NMI_H__
 12                                                    12 
 13 #include <xen/interface/xen.h>                     13 #include <xen/interface/xen.h>
 14                                                    14 
 15 /*                                                 15 /*
 16  * NMI reason codes:                               16  * NMI reason codes:
 17  * Currently these are x86-specific, stored in     17  * Currently these are x86-specific, stored in arch_shared_info.nmi_reason.
 18  */                                                18  */
 19  /* I/O-check error reported via ISA port 0x61     19  /* I/O-check error reported via ISA port 0x61, bit 6. */
 20 #define _XEN_NMIREASON_io_error     0              20 #define _XEN_NMIREASON_io_error     0
 21 #define XEN_NMIREASON_io_error      (1UL << _X     21 #define XEN_NMIREASON_io_error      (1UL << _XEN_NMIREASON_io_error)
 22  /* PCI SERR reported via ISA port 0x61, bit 7     22  /* PCI SERR reported via ISA port 0x61, bit 7. */
 23 #define _XEN_NMIREASON_pci_serr     1              23 #define _XEN_NMIREASON_pci_serr     1
 24 #define XEN_NMIREASON_pci_serr      (1UL << _X     24 #define XEN_NMIREASON_pci_serr      (1UL << _XEN_NMIREASON_pci_serr)
 25  /* Unknown hardware-generated NMI. */             25  /* Unknown hardware-generated NMI. */
 26 #define _XEN_NMIREASON_unknown      2              26 #define _XEN_NMIREASON_unknown      2
 27 #define XEN_NMIREASON_unknown       (1UL << _X     27 #define XEN_NMIREASON_unknown       (1UL << _XEN_NMIREASON_unknown)
 28                                                    28 
 29 /*                                                 29 /*
 30  * long nmi_op(unsigned int cmd, void *arg)        30  * long nmi_op(unsigned int cmd, void *arg)
 31  * NB. All ops return zero on success, else a      31  * NB. All ops return zero on success, else a negative error code.
 32  */                                                32  */
 33                                                    33 
 34 /*                                                 34 /*
 35  * Register NMI callback for this (calling) VC     35  * Register NMI callback for this (calling) VCPU. Currently this only makes
 36  * sense for domain 0, vcpu 0. All other calle     36  * sense for domain 0, vcpu 0. All other callers will be returned EINVAL.
 37  * arg == pointer to xennmi_callback structure     37  * arg == pointer to xennmi_callback structure.
 38  */                                                38  */
 39 #define XENNMI_register_callback   0               39 #define XENNMI_register_callback   0
 40 struct xennmi_callback {                           40 struct xennmi_callback {
 41     unsigned long handler_address;                 41     unsigned long handler_address;
 42     unsigned long pad;                             42     unsigned long pad;
 43 };                                                 43 };
 44 DEFINE_GUEST_HANDLE_STRUCT(xennmi_callback);       44 DEFINE_GUEST_HANDLE_STRUCT(xennmi_callback);
 45                                                    45 
 46 /*                                                 46 /*
 47  * Deregister NMI callback for this (calling)      47  * Deregister NMI callback for this (calling) VCPU.
 48  * arg == NULL.                                    48  * arg == NULL.
 49  */                                                49  */
 50 #define XENNMI_unregister_callback 1               50 #define XENNMI_unregister_callback 1
 51                                                    51 
 52 #endif /* __XEN_PUBLIC_NMI_H__ */                  52 #endif /* __XEN_PUBLIC_NMI_H__ */
 53                                                    53 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php