dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
36 lines
772 B
C
36 lines
772 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef _ASM_X86_PARAVIRT_BASE_H
|
|
#define _ASM_X86_PARAVIRT_BASE_H
|
|
|
|
/*
|
|
* Wrapper type for pointers to code which uses the non-standard
|
|
* calling convention. See PV_CALL_SAVE_REGS_THUNK below.
|
|
*/
|
|
struct paravirt_callee_save {
|
|
void *func;
|
|
};
|
|
|
|
struct pv_info {
|
|
#ifdef CONFIG_PARAVIRT_XXL
|
|
u16 extra_user_64bit_cs; /* __USER_CS if none */
|
|
#endif
|
|
const char *name;
|
|
};
|
|
|
|
void default_banner(void);
|
|
extern struct pv_info pv_info;
|
|
unsigned long paravirt_ret0(void);
|
|
#ifdef CONFIG_PARAVIRT_XXL
|
|
u64 _paravirt_ident_64(u64);
|
|
#endif
|
|
#define paravirt_nop ((void *)nop_func)
|
|
|
|
#ifdef CONFIG_PARAVIRT_SPINLOCKS
|
|
void paravirt_set_cap(void);
|
|
#else
|
|
static inline void paravirt_set_cap(void) { }
|
|
#endif
|
|
|
|
#endif /* _ASM_X86_PARAVIRT_BASE_H */
|