Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
93cd6ba
Documentation
LICENSES
arch
block
certs
crypto
drivers
fs
include
acpi
asm-generic
clocksource
crypto
drm
dt-bindings
kcl
backport
header
kcl_acpi.h
kcl_acpi_table.h
kcl_backlight.h
kcl_bitmap.h
kcl_bitops.h
kcl_capability.h
kcl_cc_platform.h
kcl_compat.h
kcl_compiler_attributes.h
kcl_debugfs_inode.h
kcl_device.h
kcl_device_cgroup.h
kcl_dma-buf-map.h
kcl_dma-resv.h
kcl_dma_fence.h
kcl_dma_fence_chain.h
kcl_dma_mapping.h
kcl_drm_aperture.h
kcl_drm_atomic.h
kcl_drm_atomic_helper.h
kcl_drm_auth.h
kcl_drm_cache.h
kcl_drm_connector.h
kcl_drm_crtc.h
kcl_drm_dp_cec.h
kcl_drm_dp_helper.h
kcl_drm_drv.h
kcl_drm_fb.h
kcl_drm_fourcc.h
kcl_drm_gem.h
kcl_drm_hdcp.h
kcl_drm_mm.h
kcl_drm_modes.h
kcl_drm_prime.h
kcl_drm_print.h
kcl_drm_simple_kms_helper.h
kcl_eventpoll.h
kcl_fdtable.h
kcl_fence.h
kcl_fence_array.h
kcl_firmware.h
kcl_fs.h
kcl_ftrace.h
kcl_highmem-internal.h
kcl_hypervisor.h
kcl_i2c.h
kcl_idr.h
kcl_intel_family.h
kcl_io-mapping.h
kcl_io.h
kcl_iosys-map.h
kcl_kernel.h
kcl_kref.h
kcl_kthread.h
kcl_list.h
kcl_mce.h
kcl_memory.h
kcl_mm.h
kcl_mm_types.h
kcl_mmap_lock.h
kcl_mmu_notifier.h
kcl_mn.h
kcl_module.h
kcl_moduleparam.h
kcl_nospec.h
kcl_overflow.h
kcl_pagemap.h
kcl_pci.h
kcl_perf_event.h
kcl_pm.h
kcl_preempt.h
kcl_rcupdate.h
kcl_reservation.h
kcl_sched.h
kcl_sched_mm.h
kcl_seq_file.h
kcl_seqlock.h
kcl_shrinker.h
kcl_slab.h
kcl_stddef.h
kcl_string_helpers.h
kcl_suspend.h
kcl_sysfs_emit.h
kcl_task_barrier.h
kcl_timekeeping.h
kcl_types.h
kcl_version.h
kcl_video.h
kcl_workqueue.h
reservation.h
keys
kunit
kvm
linux
math-emu
media
memory
misc
net
pcmcia
ras
rdma
scsi
soc
sound
target
trace
uapi
vdso
video
xen
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
include
/
kcl
/
kcl_mce.h
Copy path
Blame
Blame
Latest commit
History
History
25 lines (19 loc) · 635 Bytes
Breadcrumbs
linux
/
include
/
kcl
/
kcl_mce.h
Top
File metadata and controls
Code
Blame
25 lines (19 loc) · 635 Bytes
Raw
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef AMDKCL_MCE_H #define AMDKCL_MCE_H #ifdef CONFIG_X86_MCE_AMD #include <asm/mce.h> /* Copied from asm/mce.h */ #ifndef XEC #define XEC(x, mask) (((x) >> 16) & mask) #endif #if defined(HAVE_SMCA_GET_BANK_TYPE_WITH_TWO_ARGUMENTS) || defined(HAVE_SMCA_GET_BANK_TYPE_WITH_ONE_ARGUMENT) || defined(HAVE_STRUCT_SMCA_BANK) enum smca_bank_types kcl_smca_get_bank_type(unsigned int cpu, unsigned int bank); #else int kcl_smca_get_bank_type(unsigned int cpu, unsigned int bank); #endif #ifndef HAVE_MCE_PRIO_UC #define MCE_PRIO_UC MCE_PRIO_SRAO #endif #endif /* CONFIG_X86_MCE_AMD */ #endif
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
You can’t perform that action at this time.